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

부트스트랩 도우미 클래스


Bootstrap의 도우미 클래스에는 pull-left, .pull-right, .center-block 및 기타 클래스가 포함됩니다.

.clearfix 클래스의 예를 살펴보겠습니다 -

요소의 부동 소수점을 지우려면 .clearfix 클래스를 사용하십시오 -

예시

<!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>
      <div class = "clearfix" style = "background: orange;border: 1px solid #000; padding: 10px;">
         <div class = "pull-left" style = "background:#58D3F7;">
            Quick Float to left
         </div>
         <div class = "pull-right" style = "background: #DA81F5;">
            Quick Float to right
         </div>
      </div>
   </body>
</html>