如何在<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;}
但是没有用。
答案 0 :(得分:2)
很简单,在你的CSS中:
.main div{
margin-bottom: 10px;
}