Computer >> Máy Tính >  >> Lập trình >> HTML

Các lớp người trợ giúp Bootstrap


Các lớp trợ giúp trong Bootstrap bao gồm pull-left, .pull-right, .center-block và các lớp khác.

Hãy để chúng tôi xem một ví dụ về lớp .clearfix -

Để xóa float của bất kỳ phần tử nào, hãy sử dụng lớp .clearfix -

Ví dụ

<!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>