ボタンがあり:hover
、後要素を表示したいと思います。しかし、私はそれを見ることができません。:after
ボタンに要素を配置することは可能ですか?
.button {
cursor: pointer;
height: 30px;
}
.button-primary {
border: none;
}
.button-primary:hover:after {
display: block;
position: relative;
top: 3px;
right: 3px;
width: 100px;
height: 5px;
}
<button class="button button-primary">My button</button>