将所有<div>放在<div> 10px </div> </div>的边距底部

时间:2014-02-07 17:29:18

标签: html css css3

如何在<div>'s<div>内提供所有margin-bottom:10px;,而不是给每个人margin-bottom:10px;

我有:

<div class="main">
 <div>1</div>
 <div>2</div>
 <div>3</div> //How can I give these 3 a margin-bottom:10px;
</div>

我做了:.main div {margin-bottom:10px;}但是没有用。

1 个答案:

答案 0 :(得分:2)

很简单,在你的CSS中:

.main div{
    margin-bottom: 10px;
}