引导井级

孔是<div>中的一个容器,该容器使内容在页面上显得凹陷或嵌入效果。要创建孔,只需使用包含.well类的<div>包装要在孔中显示的内容。

您可以尝试运行以下代码以在Bootstrap中实现良好的类-

示例

<!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 = "well">This is demo text!</div>
   </body>
</html>