在页面上以全宽显示 div 时出现问题

发布于 2025-01-09 08:06:13 字数 435 浏览 0 评论 0原文

我正在尝试在页面上并排显示 div。但是,如果页面上只有一个 col-md-6 div 类,那么我会尝试将其显示为全宽(100%)而不是 50%。目前,即使只有一个 col-md-6,它也只使用了 50%。有没有办法使用 CSS 来做到这一点? 这是我的 HTML 和 CSS:

   <div class="col-md-6 textcontent">
   </div>

   <div class="col-md-6 service">
   </div>

   <div class="col-md-6 textcontent">
   </div>

CSS

.col-md-6{
width50%;
}

I am trying to display divs side by side on a page. However, if there is only one col-md-6 div class on the page, then I am trying to display it full width(100%) rather than 50%. Currently it's using only 50% even if there is only one col-md-6. Is there a way to do this using CSS?
Here is the my HTML and CSS:

   <div class="col-md-6 textcontent">
   </div>

   <div class="col-md-6 service">
   </div>

   <div class="col-md-6 textcontent">
   </div>

CSS

.col-md-6{
width50%;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

安穩 2025-01-16 08:06:13

Flexbox 就是解决这个问题的方法。这是一个例子:

.wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 2rem;
}

.item {
  flex-grow: 1;
  /* For display purposes */
  padding: 1rem;
}

.pink {
  background-color: pink;
}

.blue {
  background-color: lightblue;
}

.green {
  background-color: lightgreen;
}

.orange {
  background-color: coral;
}
<section class="wrap">
  <div class="item pink">
    Content 1
  </div>
  <div class="item blue">
    Content 2
  </div>
  <div class="item green">
    Content 3
  </div>
</section>

<section class="wrap">
  <div class="item orange">
    Content Solo
  </div>
</section>

https://jsfiddle.net/willihyde/aqrs410u/1/

Flexbox is the way to go here. Here is an example:

.wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 2rem;
}

.item {
  flex-grow: 1;
  /* For display purposes */
  padding: 1rem;
}

.pink {
  background-color: pink;
}

.blue {
  background-color: lightblue;
}

.green {
  background-color: lightgreen;
}

.orange {
  background-color: coral;
}
<section class="wrap">
  <div class="item pink">
    Content 1
  </div>
  <div class="item blue">
    Content 2
  </div>
  <div class="item green">
    Content 3
  </div>
</section>

<section class="wrap">
  <div class="item orange">
    Content Solo
  </div>
</section>

https://jsfiddle.net/willihyde/aqrs410u/1/

一江春梦 2025-01-16 08:06:13

如果您使用引导程序,则可以使用 col-md-12 类添加全宽列。 bootstrap 网格系统将作为分数系统出现,您的数字将除以 12。因此,如果我们将 6 除以 12,答案是 0.5,这意味着 50%。这就是为什么要添加 50% 宽度的列。因此,当我们加上 12 时,它将除以 12/12,宽度将为 100%。您可以按照 Bootstrap 网格系统指南了解有关各种宽度比例和如何制作响应式网格。

<div class="col-md-12 service"></div>

如果您尝试自己构建它,请使用名称定义另一个类并添加宽度:100%;

.col-md-12{
   width:100%;
}

然后将该类名添加到您的 html 类属性中

<div class="col-md-12 service"></div>

If you are using the bootstrap, You can use the col-md-12 class to add a full width column. bootstrap grid system is coming as a fraction system and your number will be divide by 12. So if we divide the 6 by 12 the answer is 0.5 and that means 50%. That's why it's adding a 50% width column. So when we add 12 it will divide by 12/12 and the width will be 100%. You can follow the Bootstrap grid system guideline to learn more about the various width ratios and how to make a responsive grid.

<div class="col-md-12 service"></div>

If you are trying to build this by yourself, Define another class with a name and add the width: 100%;

.col-md-12{
   width:100%;
}

Then add that class name to your html class attribute

<div class="col-md-12 service"></div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文