html glow on hover

Solutions on MaxInterview for html glow on hover by the best coders in the world

showing results for - "html glow on hover"
Todd
14 Jul 2020
1element {
2  box-shadow:none;
3}
4element:hover, element:active {
5  box-shadow: inset 0 0 10px #(color of the glow you want);
6}