我正嘗試創建此示例圖像中顯示的HTML頁面。如何使用CSS排列具有半徑的div結構
Sample image http://i57.tinypic.com/14udpo4.png
我希望把其他組件上這種黑色和栗色圈的頂部。爲此,我使用div和span的標籤結構。並使用span背景圖像將此圖像用作背景。
我的問題是什麼將div和跨度的結構安排在包含褐紅色圓圈作爲背景的div/span標籤的半徑上的黑色圓圈。
直到現在我有中心圈放置。我不知道如何圍繞它
div.table-text {
position: fixed;
top: 20%;
left: 20%
}
span.table-text {
position: inherit;
display: block;
width: 60%;
height: 60%;
background-image: url(../images/table-text.png);
background-position: bottom;
background-repeat: no-repeat;
}
<div class="table-text">
<span class="table-text">
</span>
</div>
您是否嘗試過的東西? – Sebastien
這是否需要成爲響應式佈局?你試過什麼了? – Shaggy
@Sebastien直到現在我已經把中心圈(栗色)。現在我很困惑我該如何在它周圍放置黑色圓圈。 –