Answers for "css box-shadow with border redius"

1

box shador of one border css

.myDiv
{
  border: 1px solid #333;
  width: 100px;
  height: 100px;
  box-shadow: 10px -2px 5px 0px #888;
}
Posted by: Guest on December-25-2020
0

CSS box-shadow border shadow

/* offset-x | offset-y | color */
box-shadow: 60px -16px teal;

/* offset-x | offset-y | blur-radius | color */
box-shadow: 10px 5px 5px black;

/* offset-x | offset-y | blur-radius | spread-radius | color */
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);


/* Any number of shadows, separated by commas */
box-shadow: 3px 3px red, -1em 0 0.4em olive;
Posted by: Guest on June-21-2021

Browse Popular Code Answers by Language