CSS实现反方向圆角的方法?这个问题可能是我们日常学习或工作经常见到的。希望通过这个问题能让你收获颇深。下面是小编给大家带来的参考内容,让我们一起来看看吧!
原理
父级元素 relative
,子元素 absolute
,然后通过top
、left
、right
、bottom
来设置具体出现位置。
<div class="wrapper-dashed"> <div class="dashed"></div> </div>
.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; }
感谢各位的阅读!看完上述内容,你们对CSS实现反方向圆角的方法大概了解了吗?希望文章内容对大家有所帮助。如果想了解更多相关文章内容,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。