我看了看,没有发现我的具体问题。我正在尝试构建一个响应式网页,其 lg 布局有 12 个图像,其下方有文本,med 和 sm 布局,文本和图片彼此相邻,以及 xs 布局,图像再次位于文本上方。
我无法让图像和段落在列中并排放置。我尝试过 push-x、pull-x、offset-x、媒体查询,其中我为每个 .img 和 .p 制作了一个 div 并使它们浮动。
我确信有一种简单的方法可以做到这一点,但这是我使用 Bootstrap 的第一周,我想不通。这是怎么做到的?
这是我的代码示例:
<div class="row">
<div class="content col-lg-2 col-md-4 col-sm-6 col-xs-12">
<h2>Fork and Spoon</h2>
<div class="frame1"><img class="img-responsive" src="./images/spork.jpg" alt="Spork"></div>
<p>We are the <em>spork of the party!</em> Yes, we've endured most every cutting remark; just don't refer to my wife as "flatware" and she is happy. </p>
<p><a class="btn btn-default" href="#">More utensils here »</a></p>
</div>