Answers for "css image glow on hover"

CSS
0

add glow to image css

img
{
-moz-box-shadow: 0 0 5px #fff;
-webkit-box-shadow: 0 0 5px #fff;
box-shadow: 0px 0px 5px #fff;
}
Posted by: Guest on August-31-2021
0

css glow on hover

element {
  box-shadow:none;
}
element:hover, element:active {
  box-shadow: inset 0 0 10px #(color of the glow you want);
}
Posted by: Guest on November-09-2020

Browse Popular Code Answers by Language