gpt4 book ai didi

css - 使用 bootstrap 3 进行文章推/拉对齐

转载 作者:技术小花猫 更新时间:2023-10-29 11:33:31 25 4
gpt4 key购买 nike

我正在使用 bootstrap 3,我尝试为桌面上的文章设置特定的网格对齐方式。

在手机上我想像这样订购文章的内容:

  1. 职位
  2. 图片
  3. 内容

在桌面上,我想要左边的图像和右边的标题和内容。

Alignment i want

这是我的代码

<article class="row">
<header class="col-md-8 col-md-push-4">
<a href="#">
<h2>Title</h2>
</a>
</header>
<div class="col-md-4 col-md-pull-8">
<figure>
<a class="thumbnail" href="#">
<img src="..." alt="4x3 Image" class="img-responsive">
<figcaption>Caption</figcaption>
</a>
</figure>
</div>
<div class="col-md-8 col-md-push-4">
<p>Content</p>
</div>
</article>

但是使用这段代码,内容在右边但在图像下方。

有没有一种简单的方法可以得到我想要的东西?

最佳答案

基于 Possible to achieve this Mobile/Desktop layout using Bootstrap? (or other grid)

CSS:

.floatright{float:right;}
@media (max-width: 768px)
{
.floatright{float:none;}
}

html:

<div class="container" style="background-color:green">
<article class="row">
<header class="col-md-8 floatright">
<a href="#">
<h2>Title</h2>
</a>
</header>
<div class="col-md-4">
<figure>
<a class="thumbnail" href="#">
<img src="..." alt="4x3 Image" class="img-responsive">
<figcaption>Caption</figcaption>
</a>
</figure>
</div>
<div class="col-md-8 floatright">
<p>Content</p>
</div>
</article>
</div>

关于css - 使用 bootstrap 3 进行文章推/拉对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19046787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com