我有兩個圖像放在頁面上,從頂部放置37%,從左側放置25%。這樣的CSS代碼如下所示:使用css和html在圖像下對齊文本
.christmas-circle{ //image 1 class
border-radius: 50%; //makes the image a circle
position:absolute;
top:37%;
left:25%;
}
.shipment-circle{ //image 2 class
border-radius: 50%;
position:absolute;
top:37%;
}
這是HTML代碼
<div class = "christmas-inst">
<img src="christmas-circle.jpg" class="christmas-circle" style="width:256px;height:256px;">
<p> First, build your desired tree</p>
</div>
<div class = "shipment-inst">
<img src="shipment-circle.png" class="shipment-circle" style="width:256px;height:256px;">
<p> Then, we'll deliver all materials</p>
</div>
我必須放置在正確的空間圖像,但現在我想每個圖像下添加文本。我希望第一個圖像下面有文本,例如「make order」,我希望第二個圖像下面有文字說「我們會出貨」。我不完全確定如何創建它,以便文本在圖像下,同時也使圖像放置在我想要的位置。
安置自己的HTML代碼編輯 –
我的帖子的HTML代碼 – asdfgh
這不是對CSS的意見正確的語法。嘗試/ * */ – catch22