CSS半圓鋸齒邊框可以為網頁設計增加獨特性,下面就來了解一下怎樣實現這個效果。
代碼如下: .box { width: 200px; height: 150px; border-radius: 50% / 100%; border-top: 10px solid #f00; border-bottom: 10px solid #f00; position: relative; } .box:before { content: ""; position: absolute; width: 10px; height: 10px; background-color: #f00; bottom: -5px; left: 50%; margin-left: -5px; transform: rotate(45deg); border-bottom: 1px solid #999; border-right: 1px solid #999; }
以上就是實現半圓鋸齒邊框的CSS樣式,主要思路是利用border-radius屬性設置元素為半圓,再通過border-top和border-bottom屬性設置上下邊框樣式,最后通過:before偽元素來實現鋸齒效果。
下一篇vue控件顯示紅點