调整大小时无法将div居中

时间:2018-07-04 15:26:17

标签: html css wordpress center

我试图将这些卡片显示在中间,但是当我调整页面大小时,它们不在中央。我想通过仅使用html和css来实现这一点。我想将卡片显示为4行。有人可以帮忙吗?谢谢

<style>
  .review-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 200px;
    text-align: center;
    font-family: arial;
    padding: 5px;
    float: left;
    margin-left: 5%`enter code here`;
  }
</style>
<h1 style="text-align: center;">cards</h1>
<div class="row">
  <div class="column">
    <div class="review-card">

      <img class="alignnone size-medium wp-image-271388" src="https://expertpensions.co.uk/wp-content/uploads/2018/07/blank-profile-picture-973460_640-300x300.png" alt="image" width="300" height="300" />
      <h2>John</h2>
      Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry'sstandard dummy text ever since the 1500s
    </div>
  </div>
  <div class="column">
    <div class="review-card">
      <img class="alignnone size-medium wp-image-271388" src="https://expertpensions.co.uk/wp-content/uploads/2018/07/blank-profile-picture-973460_640-300x300.png" alt="image" width="300" height="300" />
      <h2>Gayle</h2>
      Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown
    </div>
  </div>
  <div class="column">
    <div class="review-card">
      <img class="alignnone size-medium wp-image-271388" src="https://expertpensions.co.uk/wp-content/uploads/2018/07/blank-profile-picture-973460_640-300x300.png" alt="image" width="300" height="300" />
      <h2>Caroline</h2>
      Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text
    </div>
  </div>
  <div class="column">
    <div class="review-card">
      <img class="alignnone size-medium wp-image-271388" src="https://expertpensions.co.uk/wp-content/uploads/2018/07/blank-profile-picture-973460_640-300x300.png" alt="image" width="300" height="300" />
      <h2>Linda</h2>
      Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s
    </div>
  </div>
</div>

1 个答案:

答案 0 :(得分:0)

我已经稍微简化了您的代码并减小了大小,只是为了使其在此处显示更好。

此修补程序的实质是使列使用“行内块”显示,并在父容器上使用文本对齐中心

<style>
  .row {
    background: pink;
    text-align: center;
  }
  
  .column {
    display: inline-block;
  }
  
  .review-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 200px;
    text-align: center;
    font-family: arial;
    font-size: 12px;
    padding: 5px;
    background: white;
    margin-left: 1%;
  }
</style>
<h1 style="text-align: center;">cards</h1>
<div class="row">
  <div class="column">
    <div class="review-card">
      <img src="https://placehold.it/100x100?text=Temp+Image(100x100)">
      <h2>John</h2>
    </div>
  </div>
  <div class="column">
    <div class="review-card">
      <img src="https://placehold.it/100x100?text=Temp+Image(100x100)">
      <h2>Gayle</h2>
    </div>
  </div>
  <div class="column">
    <div class="review-card">
      <img src="https://placehold.it/100x100?text=Temp+Image(100x100)">
      <h2>Caroline</h2>
    </div>
  </div>
  <div class="column">
    <div class="review-card">
      <img src="https://placehold.it/100x100?text=Temp+Image(100x100)">
      <h2>Linda</h2>
    </div>
  </div>
</div>