📋 个人简介
- 💖 作者简介:大家好,我是阿牛。
前言
今天继续分享一个前端小demo来复习回顾一下知识点,依旧是很有趣的案例,分享给大家。
前端案例-为盒子的四个角添加边框线
题目
如下图所示,我们要在盒子的四个小角加上小边框,如何实现呢?
思路
如上图所示,我们只需给大盒子的四个小角放置四个小盒子,然后将用不到的小盒子的边设置成透明色或者不着色就可以了。
具体步骤:
1.给大盒子添加::before和::after伪元素,然后通过绝对定位(父盒子要用相对定位(父相子绝))将小盒子定位到左边和右边,给小盒子宽高,将对应的边框显示出来。
2.我们知道,一个盒子只能有一个::before和::after伪元素,因此下面的两个小盒子我们要重新找一个盒子,我们可以在大盒子里面搞一个height=0,width=100%的盒子,然后通过绝对定位定位到大盒子里面的底部,这是我们就可以给这个看不到的盒子通过绝对定位设置::before和::after伪元素来做下面的两个边框(父绝子绝)。
代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.panel{
position: relative;
width: 400px;
height: 200px;
border: 1px solid rgba(25, 186, 139, 0.17);
background: url(img/line.png);
background-color: rgb(3, 59, 81);
margin: 100px auto;
}
.panel::before {
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
border-left: 2px solid #02a6b5;
border-top: 2px solid #02a6b5;
content: "";
}
.panel::after {
position: absolute;
top: 0;
right: 0;
width: 20px;
height: 20px;
border-right: 2px solid #02a6b5;
border-top: 2px solid #02a6b5;
content: "";
}
.panel .panel-footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
.panel .panel-footer::before {
position: absolute;
bottom: 0;
left: 0;
width: 20px;
height: 20px;
border-left: 2px solid #02a6b5;
border-bottom: 2px solid #02a6b5;
content: "";
}
.panel .panel-footer::after {
position: absolute;
bottom: 0;
right: 0;
width: 20px;
height: 20px;
border-right: 2px solid #02a6b5;
border-bottom: 2px solid #02a6b5;
content: "";
}
</style>
</head>
<body>
<div class="panel">
<div class="panel-footer"></div>
</div>
</body>
</html>