03擬似クラス「:hover」でアンダーラインを入れる
emoji_objects
詳細はこちら
.**********::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: #000;
opacity: 0;
}
.**********:hover::before {
opacity: 1;
}
ヒント
-- css --
::before {
opacity: ???;
}
:hover::before {
opacity: ???;
}