Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

รับ Bootstrap Jumbotron แบบเต็มความกว้างและไม่มีมุมมน


ในการรับจัมโบตรอนแบบเต็มความกว้างและไม่มีมุมมน ให้ใช้ .jumbotron คลาสภายนอก .container . ทั้งหมด คลาสและเพิ่ม .container . แทน ภายใน.

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน

<!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 = "jumbotron">
         <div class = "container">
            <h1>Welcome to landing page!</h1>
            <p>Example for jumbotron.</p>
            <p>
               <a class = "btn btn-primary btn-lg" role = "button">
                  Click for more
               </a>
            </p>
         </div>
      </div>
   </body>
</html>