当前位置: 首页 > 编程笔记 >

像一组一样创建Bootstrap 4卡网格的容器

宰父冠玉
2023-03-14
本文向大家介绍像一组一样创建Bootstrap 4卡网格的容器,包括了像一组一样创建Bootstrap 4卡网格的容器的使用技巧和注意事项,需要的朋友参考一下

要为Bootstrap卡设置容器并将其设置为组,请使用card-group类。

使用它并使用两个Bootstrap卡创建如下所示的网格-

<div class="card-group">
  <div class="card bg-primary">
    <div class="card-body text-center">
      <p class="card-text">Demo Text!</p>
    </div>
   </div>
   <div class="card bg-warning">
     <div class="card-body text-center text-white">
       <p class="card-text">Warning!</p>
     </div>
   </div>
</div>

以下是在Bootstrap中创建网格(卡组)的示例-

示例

<!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://cdn.staticfile.org/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">
    <h3>Group of Messages</h3>
    <div class="card-group">
      <div class="card bg-primary">
        <div class="card-body text-center">
          <p class="card-text">Demo Text!</p>
        </div>
      </div>
      <div class="card bg-warning">
        <div class="card-body text-center text-white">
          <p class="card-text">Warning!</p>
        </div>
      </div>
      <div class="card bg-success">
        <div class="card-body text-center">
           <p class="card-text">Well done!</p>
        </div>
      </div>
      <div class="card bg-success">
        <div class="card-body text-center">
          <p class="card-text">Selected!</p>
        </div>
      </div>
     </div>
   </div>
</body>
</html>
 类似资料:
  • 主要内容:HTML 代码接下来我们通过 Bootstrap4 来创建一个简单的响应式网页。 在学习之前我们可以先看下效果:https://www.xnip.cn/try/demo_source/bootstrap3-makewebsite.htm HTML 代码 <div class="jumbotron text-center" style="margin-bottom:0"> <h1>我的第一个 Bootstrap

  • 主要内容:网格类,Bootstrap 4 网格的基本结构,Bootstrap4 网格基本结构,实例,实例,实例,平板和桌面端,实例,平板、桌面、大桌面显示器、超大桌面显示器,实例,偏移列,实例Bootstrap 提供了一套响应式、移动设备优先的流式网格系统,随着屏幕或视口(viewport)尺寸的增加,系统会自动分为最多 12 列。 我们也可以根据自己的需要,定义列数: 1 1 1 1 1 1 1 1 1 1 1 1 4 4 4 4 8 6 6 12 Bootstrap 4 的网格系统是响应式的

  • 问题内容: 目前,这是一个理论性的问题,但是我可能需要长期做一些事情。 当您访问google.com并开始输入搜索内容时,它将在一个小的下拉菜单中为您提供建议。我可以肯定地说,他们使用AJAX来发送您输入的内容并获得可能的建议列表。我要弄清楚的是他们实际如何显示该列表。它看起来像一个简单的下拉列表,只是顶部没有实际的选择框。在我的心中,毫无疑问,这就像一个CSS技巧一样简单,它可以将选择框从它产生

  • 问题内容: 我对二维数组有问题。我有这样的显示: 我基本上想要显示为: 这是我的代码: 问题答案: 输出量 当然,您可以像其他答案中提到的那样交换7和5,以获得每行7。

  • 主要内容:简单的卡片,实例,头部和底部,实例,多种颜色卡片,实例,标题、文本和链接,实例,图片卡片,实例,实例简单的卡片 我们可以通过 Bootstrap4 的 .card 与 .card-body 类来创建一个简单的卡片,实例如下: 实例 <div class="card"> <div class="card-body">简单的卡片</div> </div> Bootstrap4 的卡片类似 Bootstrap 3 中的面板、图片缩略图、well。 头部和底部 .card-header类用于创

  • 我正在用TypeScript创建一个名为“三个犯罪”的简单逻辑游戏。 在尝试在TypeScript中预先分配类型化数组时,我尝试执行以下操作: 它给出了错误“表达式项的检查格式”。 也尝试过这样做 而这产生了“无法将任何[]转换为‘罪犯’” 什么是'TypeScript'的方式来做到这一点?