0
A
답변
0
http://www.sony.com/electronics/playstation가 pseudo
요소 ::after
border-bottom
찬성이를 사용하는 이점을 사용하여 간단한 샘플입니다, 그것은 위아래로
a {
position: relative;
padding: 10px 20px;
}
a::after {
content: ' ';
position: absolute;
left: 0;
bottom: -5px;
width: 100%;
height: 0;
background: blue;
transition: height 0.3s;
}
a:hover::after {
height: 5px;
transition: height 0.3s;
}
<a> Hover me </a>
안녕하세요. 귀하와 함께 일할 수있는 HTML 및 CSS 코드가 있습니까? –