本篇文章透過程式碼範例介紹一下使用純CSS畫圓環的方法。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。
畫圓環思想很簡單:先畫兩個圓,設定不同的背景色;然後讓兩個圓的圓心重合即可。
難度係數
☆☆
#HTML
<div class="container"> <span class="ring-style"></span> </div>
解析:
.container { position: relative; top: 0; left: 0; width: 300px; height: 300px; background-color: lightgrey; } .ring-style { display: inline-block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: blue; width: 260px; height: 260px; border-radius: 260px; } .ring-style::before { content: ' '; display: inline-block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: white; width: 200px; height: 200px; border-radius: 200px; }
以上是使用純CSS畫一個圓環(程式碼範例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!