Bootstrap 4 .d-block 类


在 Bootstrap 中使用 .d-block 类创建块元素。

d-block 类的设置如下所示的代码片段中所示 −

<span class="d-block bg-primary">
  block
</span>

可以尝试运行以下代码来实现 d-block 类 −

示例

实时演示

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
  </head>

<body>

  <div class="container mt-3">
    <h2>Creating Blocks</h2>
    <p>Resize the browser to check the effect.</p>
    <span class="d-block bg-primary">
      block
    </span>
    <span class="d-sm-block bg-primary">
      block on small screen
    </span>
   </div>

 </body>
</html>

更新于:2020 年 6 月 18 日

628 次查看

开启你的职业生涯

完成课程获得认证

开始
广告