zoukankan      html  css  js  c++  java
  • [Bootstrap] 1. container & container-fluid

    Container: 居中

    <!DOCTYPE html>
    <html>
      <head>
        <title>Blasting Off With Bootstrap</title>
        <link href='css/bootstrap.min.css' rel='stylesheet'>
        <link href='css/main.css' rel='stylesheet'>
      </head>
      <body>
        <div class='container'>
          <h1>The Fastest Way to Space</h1>
          <p>Make your way to space in the comfort of your own rocket, elevator or transporter.</p>
          <button type='button'>Take the Tour</button>
          <button type='button'>Book Tickets Now</button>
        </div>
    
        <div class="footer"><div class="container"><p >This is our footer</p></div></div>
        
      </body>
    </html>

     

    Container-fluid: 拉伸

    <!DOCTYPE html>
    <html>
      <head>
        <title>Blasting Off With Bootstrap</title>
        <link href='css/bootstrap.min.css' rel='stylesheet'>
        <link href='css/main.css' rel='stylesheet'>
      </head>
      <body>
        <div class='container'>
          <h1>The Fastest Way to Space</h1>
          <p>Make your way to space in the comfort of your own rocket, elevator or transporter.</p>
          <button type='button'>Take the Tour</button>
          <button type='button'>Book Tickets Now</button>
        </div>
    
        <div class="footer"><div class="container-fluid"><p >This is our footer</p></div></div>
        
      </body>
    </html>

     

  • 相关阅读:
    NSString拼接字符串
    2020/4/26
    2020/4/25
    2020/4/24
    2020/4/22
    2020/4/22
    2020/4/20
    2020/4/19
    2020/4/18
    2020/4/17
  • 原文地址:https://www.cnblogs.com/Answer1215/p/4242505.html
Copyright © 2011-2022 走看看