リンクボタン – 005
プレビュー
コードの紹介
html
<a href="#" class="cLinkButton">1st code</a>
CSS
.cLinkButton {
color: #000;
text-decoration: none;
padding: 8px 24px;
position: relative;
}
.cLinkButton:before,
.cLinkButton:after {
position: absolute;
width: 100%;
height: 2px;
content: "";
-webkit-transition: all 0.3s;
transition: all 0.3s;
background: #000;
}
.cLinkButton:before {
top: 0;
left: 0;
}
.cLinkButton:after {
right: 0;
bottom: 0;
}
.cLinkButton:hover:before,
.cLinkButton:hover:after {
width: 0;
}