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