css矩形边角加粗的实例代码
来源:爱站网时间:2022-11-15编辑:网友分享
如果你想在CSS中实现矩形边角加粗,那这篇文章内容你千万不要错过了,爱站技术频道小编分享了相关资料给你们查看,相信有需要的朋友看完后能从中获取到知识。
1、工具/原料
- html
- css
2、具体实现
html代码
<body> <h1 style="color: red">css实现矩形边角加粗</h1> <div class="main"> <span></span> <span></span> <span></span> <span></span> </div> </body>
css代码
body{ display: flex; justify-content: center; flex-direction: column; align-items: center; } .main{ position: relative; width: 400px; height: 200px; border: 1px solid red; } .main span:nth-child(1){ position: absolute; left: -5px; top: -5px; padding: 15px; border-style: solid; border-color: rebeccapurple; border-width: 5px 0 0 5px; } .main span:nth-child(2){ position: absolute; right: -5px; top: -5px; padding: 15px; border-style: solid; border-color: rebeccapurple; border-width: 5px 5px 0 0; } .main span:nth-child(3){ position: absolute; right: -5px; bottom: -5px; padding: 15px; border-style: solid; border-color: rebeccapurple; border-width: 0 5px 5px 0; } .main span:nth-child(4){ position: absolute; left: -5px; bottom: -5px; padding: 15px; border-style: solid; border-color: rebeccapurple; border-width: 0 0 5px 5px; }
原理很简单, 只要弄清position:relative,border和left,top之间的关系就可以了
如果你看完css矩形边角加粗的实例代码文章后,还是对这方面的理解不是很透彻,可以直接来网站找技术小编咨询,希望小伙伴们通过学习,都能让自己的技术操作更上一层楼。
上一篇:CSS实现火焰效果的实例代码
下一篇:css3画半圆弧线的实例代码