gpt4 book ai didi

html - 使用
的金字塔结构

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

我试过了 display:inline-block然后是 position: relative将不再有效,必须使用 <div>这些盒子没有 <div> , <span>等等

最佳答案

.tile-row{
margin: 0 auto;
}

.tile{
width:32%;
float: left;
height: 100px;
background: #456789;
margin-left:10px;
margin-bottom: 10px;
}

@media only screen and (max-width: 1000px) {
.tile-row > div:nth-of-type(1)
{
float: none;
margin: 10px 100px;

}
}
@media only screen and (max-width: 460px) {
.tile-row > div:nth-of-type(1){
margin: 10px 0;
}
.tile{
float:none;
background: #333333;
margin: 10px 0;
}

}
<div class='tile-row'>
<div class='tile'></div>
<div class='tile'></div>
<div class='tile'></div>
</div>

检查一次这个例子。

关于html - 使用 <dd> 的金字塔结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44235809/

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