我有兩個div在此刻包含不同的圖像和文字。他們使用相同的css樣式.cheese_people
我需要在兩個框的中間創建一個邊距。我將如何做到這一點?如何在兩個獨立的div之間創建保證金?
也我真的需要兩個div來做到這一點?我這樣做的唯一原因是讓他們在同一個網格線上。
<div class=" grid 6 cheese_people">
<img class="people_photo" src="img/cheese_expert.jpg">
<h4>Chief Cheese Taster <br> Dave Le Conk</h4>
<p class="chesse_people">I've always had a passion for cheese - Now I get to taste it everyday!</p>
</div>
<div class=" grid 6 cheese_people">
<img class="people_photo" src="img/cheese_owner.jpg">
<h4>The Big Cheese Owner <br> Sally De Cheese</h4>
<p class="chesse_people">I wanted to create an online store that I'd would trust</p>
</div>
.cheese_people {
font-family: sans-serif;
background-color: #dec38c;
border:solid 3px #6b5221;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
float:left;
width:45%;
}
您是否嘗試添加'margin-right:10px;'例如? – kunalbhat
您可以添加「margin-right」並將其從「最後一個孩子」中移除。 – Brewal
P.S.您不再需要爲border-radius定義瀏覽器前綴:http://caniuse.com/#search=border-radius – kunalbhat