Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

give transition on box shadow

div {
  height: 200px;
  width: 200px;
  box-shadow: 0;
  transition: box-shadow 1s;
  border: 1px solid #eee;
}

div:hover {
  box-shadow: 0 0 3px #515151;
  ;
}
 
PREVIOUS NEXT
Tagged: #give #transition #box #shadow
ADD COMMENT
Topic
Name
3+7 =