Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

Bootstrap Navbar에서 텍스트 줄 바꿈


.navbar-text 클래스를 사용하여 요소의 텍스트 문자열을 래핑하려면

예시

다음 코드를 실행하여 Bootstrap Navbar −

에서 텍스트를 설정할 수 있습니다.
<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <nav class = "navbar navbar-default" role = "navigation">
         <div class = "navbar-header">
            <a class = "navbar-brand" href = "#">Demo</a>
         </div>
         <div>
            <p class = "navbar-text">Copyright © 2018</p>
         </div>
      </nav>
   </body>
</html>