console
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
*{
margin: 0;
padding: 0
}
.father{
position: relative;
margin: 100px auto;
width: 50px;
text-align: center
}
.father:after{
content: "";
position: absolute;
display: block;
top: 30px;
left: 50%;
width: 0;
height: 0;
transition: all 0.8s;
background-color: blue;
}
.father:after{
transform: translateX(-50%);
}
.father:hover{
}
.father:hover:after{
width: 30px;
height: 2px;
}
</style>
</head>
<body>
<div class="father">
首页
</div>
</body>
</html>