在列上设置相同的高度

Setting same height on columns

我用 Bootstrap 制作了 2 列的一行 3. 我正在为一家网店编程,那里有大约 100.000 种产品,所以它还没有转换为 BS4。因此我被迫使用 BS3。左栏将包含背景颜色和一些文本,而右栏将包含图像。

这就是该行现在的样子:

  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<div class="wrapper">
    <div class="row">
        <div class="col-sm-3" style="background-color:pink;">
            <h3>Headline</h3>
            <p>Some text here</p>
            <button type="button" class="btn btn-info">Button</button>
        </div>
        <div class="col-sm-9">
            <img src="http://placehold.it/900x200">
        </div>
    </div>
</div>

我的最终结果应该是这样的:

如评论中所述,您的代码可以正常工作,因为您使用的是 bootstrap 3,您可能希望对图像使用 img-responsive class,因为它的宽度较大。

顺便说一句,我已经将你的 col-sm-3col-sm-9 class 更改为 xs,你可能需要考虑将它们更改为 mdsm 适合您的情况。

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <link
      rel="stylesheet"
      href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
      integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu"
      crossorigin="anonymous"
    />
    <title>Static Template</title>
    <style>
      .d-flex {
        display: flex;
      }
      .image-container {
        background-size: cover;
        background-position: center center;
      }
    </style>
  </head>
  <body>
    <h1>
      This is a static template, there is no bundler or bundling involved!
    </h1>
  </body>
  <!-- Latest compiled and minified CSS -->
  <div class="container">
    <div class="wrapper">
      <div class="row d-flex">
        <div class="col-xs-3" style="background-color:pink;">
          <h3>Headline</h3>
          <p>Some text here</p>
          <button type="button" class="btn btn-info">Button</button>
        </div>
        <div
          class="col-xs-9 image-container"
          style="background-image: url(https://picsum.photos/id/287/900/200)"
        ></div>
      </div>
    </div>
  </div>

  <!-- Latest compiled and minified JavaScript -->
</html>

-编辑:在深入了解您真正想要实现的目标后(两列的高度相同)我 更新 我的问题如下:
添加一个名为 d-flex 的 class 以在您需要的任何容器上设置 display: flex,一旦容器具有 display: flex; 值,其子项将默认拉伸。
您可能还需要更新图像以支持 height: 100%,我强烈建议您不要这样做,因为这会使图像看起来很难看。而是利用 background-size: cover;.

一些关于如何使您的图像很好地适应的好资源:
https://css-tricks.com/almanac/properties/o/object-fit/
https://css-tricks.com/almanac/properties/b/background-size/