gpt4 book ai didi

html - 调整大小时不能居中div

转载 作者:行者123 更新时间:2023-11-28 02:30:07 25 4
gpt4 key购买 nike

我试图在中心显示这些卡片,但是当我调整页面大小时,它们偏离了中心。如果可能的话,我想通过只使用 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>

最佳答案

我已经稍微简化了您的代码并减小了大小,只是为了让它在这里显示得更好。

修复的实质是使用“inline-block”使列显示并在父容器上使用 text-align center

<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>

关于html - 调整大小时不能居中div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51176961/

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