gpt4 book ai didi

html - 容器查询

转载 作者:太空宇宙 更新时间:2023-11-04 10:49:51 24 4
gpt4 key购买 nike

我想做到这一点,所以我有一个容器,我可以在其中放置三个 div,每个 div 将包含一个图像、一个标题和一个小段落,我希望它们居中对齐,所以第二个是正确的在中心,我将如何去做呢?

最佳答案

这是实现它的一种非常简单的方法:

我使用了三个 section div,每个都居中声明了一个宽度和 margin: 0 auto 规则。

body{
margin:0;
padding:0;
width:100%;
height:100vh;
}

section{
width:50%;
margin:0 auto;
}

h2.title{
text-align:center;
}
<section>
<h2 class="title">Section1</h2>
<img src="http://lorempixel.com/300/300/animals" alt="">
</section>
<section>
<h2 class="title">Section2</h2>
<img src="http://lorempixel.com/300/300/animals" alt="">
</section>
<section>
<h2 class="title">Section3</h2>
<img src="http://lorempixel.com/300/300/animals" alt="">
</section>

关于html - 容器查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35074994/

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