我想將保證金應用於特定的子div 2 * 「#child2」 *,但它也對父div應用了保證金。問題是保證金崩潰。如何將margin應用於子div而不影響父div?
<div id="parent">
<div id="child1" class="child">hello1</div>
<div id="child2" class="child">hello1</div>
<div id="child3" class="child">hello1</div>
</div>
CSS
#parent{
overflow:auto;
padding-top: -1px;
margin-top: 1px;
}
.child{
margin:0 30px;
display:inline-block;
background-color: #5395ce;
padding: 5px;
}
#parent{
background-color: #000;
}
#child2{
margin-top: 15px;
}
下面是代碼:http://jsbin.com/nibaw/5/edit?html,css,output
你能後的代碼,請。似乎我無法訪問鏈接(可能是我的電腦中的安全問題) – Umesh
如果你不能告訴你想要什麼你PLZ添加屏幕截圖,你想如何.. –