The Hovering Magician #14
Answered
by
mitulpatel224
meviru
asked this question in
Galaxy Trivia
-
You have an element that wants to show off its stylish border only when someone hovers over it. How can it perform this magic trick using CSS? |
Beta Was this translation helpful? Give feedback.
Answered by
mitulpatel224
Jul 20, 2024
Replies: 1 comment
-
You can use
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
meviru
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use
border
property on:hover
pseudo-class like this[your_element_selector]:hover{ border: 1px solid #000000; }