CSS實現反方向圓角

原理

父級元素 relative,子元素 absolute,而後經過 topleftrightbottom來設置具體出現位置。

DOM結構

<div class="wrapper-dashed">
    <div class="dashed"></div>
</div>

圖片名稱

CSS樣式

.wrapper-dashed{
    position: relative;
    height: 1px;
    width: 100%;
}
/*虛線實現*/
.dashed {
    border-top: 1px dashed #cccccc;
    height: 1px;
    overflow: hidden;
}
.dashed:before, .dashed:after{
    display: block;
    position: absolute;
    content: "";
    width:10px;
    height:10px;
    background-color:#f3f5f9;
    border-radius:50%;
    top: -5px;
}
.dashed:before{
    left: -5px;
}
.dashed:after{
    right: -5px;
}

效果圖

圖片描述



圖片描述

相關文章
相關標籤/搜索