2014-09-27 358 views
0

我試圖讓這4個圖像爲圓形,但我想我會稍後使用圖像,但無論如何。我試圖把一個標題放在圖像下(中下),而不是它的頂部。這是發生了什麼事。Div圓圈圖像問題

.services img{ 
 
    border-radius: 50%; 
 
    padding-left: 10px; 
 
    float: left; 
 
    display: block; 
 
}
<section class="services"> 
 
    <h1 style="text-align:center; font-size:38px;">Services we offer</h1> 
 
    <div class="circle"> 
 
    <img src="http://placehold.it/290x250"> 
 
    <h3>Title</h3> 
 
    </div> 
 
    <div class="circle"> 
 
    <img src="http://placehold.it/290x250"> 
 
    <h3>Title</h3> 
 
    </div> 
 
    <div class="circle"> 
 
    <img src="http://placehold.it/290x250"> 
 
    <h3>Title</h3> 
 
    </div> 
 
    <div class="circle"> 
 
    <img src="http://placehold.it/290x250"> 
 
    <h3>Title</h3> 
 
    </div> 
 
</section>
enter image description here

所以它會看起來像我的設計。 enter image description here

+0

我覺得沒有在圖像足夠的空間DIV。嘗試移除'img'標籤的'padding'。 – Ormoz 2014-09-27 17:35:51

回答

1
.circle{ 
    text-align: center; 
    display: inline-block; 
} 
.services img{ 
    border-radius: 50%; 
    padding-left: 10px; 
    display: block; 
} 

http://jsfiddle.net/mx7xknzr/1/

+0

感謝這個人做的伎倆。 – nCore 2014-09-27 17:37:49

+0

@nCore,然後將其標記爲正確:) – 2014-09-27 17:38:23

+0

是的,但Stack不會讓我呢:/出於某種原因。 – nCore 2014-09-27 17:39:40