問題
我試圖將圖像置於響應式圓圈(div)中,而響應式圓圈本身就是另一個響應圈的孩子。置於響應式圈子內的圖像
我覺得我有釘子的div,但只要我包含圖像的比例變形,我無法弄清楚正確的CSS代碼。
這兩個div是爲了我計劃的未來邊界效應。
我現在有...
HTML
<section class="col-4">
<div class="wrapper">
<div class="outta-circle">
<div class="circle">
<!-- <img src="#"> -->
</div>
</div>
</div>
<div class="wrapper">
<div class="outta-circle">
<div class="circle">
<!-- <img src="#"> -->
</div>
</div>
</div>
</section>
CSS
.col-4 {
width: 1068px;
}
.wrapper {
width: 48.68%;
max-height: 520px;
background-color: white;
}
.outta-circle {
width: 100%;
height: auto;
margin: 80px auto;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
background-color: red;
}
.circle {
width: 96.15%;
height: auto;
padding-bottom: 96.15%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
background-color: blue;
overflow: hidden;
}
我的問題的解決方案是使用CSS背景屬性爲類.circle
(見評論,歡呼聲他幫助!!)。
我有許多新聞故事,每個都有自己的圖像放在一個PHP數組中 - 我打算使用數據庫,但暫時數組就足夠了 - 因此img src
將根據加載哪個新聞故事。
我打算用:
<img src="<?php echo $article["img"]; ?>" alt="<?php echo $article["title"]; ?>">
現在我使用的CSS背景屬性,我將如何解析PHP到HTML/CSS?
我是新來此,道歉,如果我沒有被明確...
我無法完全理解你想要達到的目標。你在找這樣的東西嗎? http://codepen.io/nobitagit/full/trEuJ – Nobita
你只是想創建一個圓形圖像放在'div'?如果這樣看[這裏](http://bavotasan.com/2011/circular-images-with-css3/) –
@Zeaklous非常感謝你,這就是我以後,但我不清楚我的最終目標。我的代碼後請參閱上面的編輯。 –