Answers for "add border at hover of div"

CSS
1

add border at hover of div

.photo{
  /*2 rem outside border */
  outline-offset:2rem;
  &:hover{
    outline:1.5rem solid green;
  
}
Posted by: Guest on March-04-2022

Browse Popular Code Answers by Language