Answers for "css button shadows"

1

box shadow button

.button1 {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 
rgba(0,0,0,0.19);
}

.button2:hover {
  box-shadow: 0 12px 
16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
Posted by: Guest on May-26-2021
3

inner box shadow

div {
     box-shadow: inset 0 0 10px #000000;
}
Posted by: Guest on April-16-2020

Browse Popular Code Answers by Language