gpt4 book ai didi

html - margin-top 和 margin-bottom 之间的 CSS 最佳实践何时都可以工作?

转载 作者:太空狗 更新时间:2023-10-29 15:40:41 26 4
gpt4 key购买 nike

当您想为紧跟在第一个元素之后的元素留出空间时,CSS 最佳实践是什么。

假设这个 html

<div class="a-block">lorem</div>
<div class="another-block">ipsum</div>

你应该使用这个 css

.a-block { margin-bottom: 10px; }

.another-block { margin-top: 10px; }

?

最佳答案

我会用:nth-child宽度 margin-top

div:not(:first-child) {
margin-top: 10px
}
<div class="a-block">lorem</div>
<div class="another-block">ipsum</div>
<div class="another-block-1">ipsum</div>
<div class="another-block-2">ipsum</div>

关于html - margin-top 和 margin-bottom 之间的 CSS 最佳实践何时都可以工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29458884/

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