テキスト<a href="#" class="cp_textlink07">リンクテキスト-link text-</a>テキスト
.cp_textlink07 {
position: relative;
display: inline-block;
padding: 5px;
color: #9C27B0;
text-decoration: none;/*元々のアンダーラインを非表示にしておく*/
}
/*擬似要素の設定(共通)*/
.cp_textlink07::before,
.cp_textlink07::after {
position: absolute;
content: '';
border-radius: 3px;
}
/*hover前の表示(背景塗りつぶし)*/
.cp_textlink07::before {
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(156,39,176 ,.4);
transition: all 0.3s ease;
}
/*hover時の表示(背景塗りつぶし)*/
.cp_textlink07:hover:before {
background: rgba(156,39,176 ,.2);
}
/*hover前の表示(ライン)*/
.cp_textlink07::after {
top: -4px;
bottom: -4px;
left: -4px;
right: -4px;
width: calc(100% + 6px);
height: calc(100% + 6px);
border: 1px solid #9C27B0;
opacity: 0;
transition: all 0.3s;
}
/*hover時の表示(ライン)*/
.cp_textlink07:hover:after {
top: 2px;
left: 2px;
width: calc(100% - 6px);
height: calc(100% - 6px);
opacity: 1;
}