我正在编写一个应用程序,rails.
但我对 css 还不是很熟悉。虽然,我正在努力。还有一个问题,我生成的html标签是
<div class="sub-product post-1">
// content goes here
</div>
<div class="sub-product post-2">
// content goes here
</div>
<div class="sub-product post-3">
// content goes here
</div>
<div class="sub-product post-4">
// content goes here
</div>
现在,如您所见,不同的数字排列为post
. 我想做的是让他们缩进,这是我的css
.sub-product.post-1 {
margin:30px
}
它可以工作,但如果我做到了,.sub-product.post-1.post-2.post-3.post-4
它确实会显示缩进。我想我知道这里出了什么问题,但是显示它们缩进的优雅解决方案是什么?
谢谢