最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
css边框添加四个角实现代码
时间:2022-06-25 13:46:54 编辑:袖梨 来源:一聚教程网
本篇文章小编给大家分享一下css边框添加四个角实现代码,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
1、html
2、css
.loginbody{
border: 1px solid #21a7e1;
box-shadow: 5px 5px 10px 10px rgba(24,68,124,0.4);
padding-top:20px;
border-radius: 6px;
position: relative;
}
/*四个角框*/
.border_corner{
z-index: 2500;
position: absolute;
background: rgba(0,0,0,0);
border: 4px solid #1fa5f1;
}
.border_corner_left_top{
top: -2px;
left: -2px;
border-right: none;
border-bottom: none;
border-top-left-radius: 6px;
}
.border_corner_right_top{
top: -2px;
right: -2px;
border-left: none;
border-bottom: none;
border-top-right-radius: 6px;
}
.border_corner_left_bottom{
bottom: -2px;
left: -2px;
border-right: none;
border-top: none;
border-bottom-left-radius: 6px;
}
.border_corner_right_bottom{
bottom: -2px;
right: -2px;
border-left: none;
border-top: none;
border-bottom-right-radius: 6px;
}
相关文章
- 提问的魅力与技巧:如何结构化提问? 07-21
- 采用LM Studio一键部署本地AI大语言模型 07-21
- 云游戏绝区零网页端入口-2026绝区零网页云游戏入口网址大全 07-21
- 中移芯昇成功入选工信部人工智能应用典型案例 07-21
- WAIC 2026定调务实:诚迈科技三大AI产品破解落地难题 07-21
- 诡异夜晚滑梯幽灵相片 07-21
