私は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
インデントされて表示されます。ここで何が問題なのかはわかっていると思いますが、それらをインデントして表示するためのエレガントな解決策は何ですか?
ありがとう