テキスト<a href="#" class="cp_textlink03">リンクテキスト-link text-</a>テキスト
.cp_textlink03 {
position: relative;
display: inline-block;
padding: 5px;
color: #009688;
text-decoration: none;/*元々のアンダーラインを非表示にしておく*/
}
/*hover前 通常の表示*/
.cp_textlink03::after,
.cp_textlink03::before {
position: absolute;
bottom: -2px;
left: -2px;
content: '';
width: 100%;
transition: all 0.3s ease;
border-bottom: 2px solid #009688;
}
.cp_textlink03::before {
opacity: 0;/*通常は非表示にしておく*/
}
/*hover時上のラインの位置*/
.cp_textlink03:hover:after {
bottom: 0;
left: 4px;
}
/*hover時下のラインの位置 非表示にしていたものを表示*/
.cp_textlink03:hover:before {
bottom: -4px;
opacity: 1;
}