gpt4 book ai didi

html - 增加 float 元素的边距

转载 作者:太空宇宙 更新时间:2023-11-03 18:32:25 25 4
gpt4 key购买 nike

我有一个 .container因为有 n 个(left-blockright-block)div。
left-block向左浮动,right-block向右浮动。但是我在 1st left-block 之后没有得到 margin 和 right-block第二个left-blockright-block
这是一个演示:JSBin Image

最佳答案

添加margin-top.left-block以及.right-block

Demo

.left-block {
float:left;
border:solid #CCC 1px;
width:350px;
height:125px;
background:transparent;
clear: right;
margin-top: 10px;
//position:relative;
}

.right-block {
float:right;
border:solid #CCC 1px;
width:350px;
height:125px;
background:transparent;
clear:right;
//position:relative;
margin-top: 10px;
}

P.S 删除 <br />标签,它们不是必需的。


上面会加上10px margin顶部框,为了摆脱它,使用下面的选择器。

.container > div:nth-of-type(1) {
margin-top: 0;
}

.container > div:nth-of-type(2) {
margin-top: 0;
}

关于html - 增加 float 元素的边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19541589/

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