drop shadow css w3schools code example
Example 1: drop shadow css
filter: drop-shadow(30px 10px 4px #4444dd);
drop-shadow(offset-x offset-y blur-radius color)
Example 2: how to add shadow css
h1 {
text-shadow: 2px 2px;
}
filter: drop-shadow(30px 10px 4px #4444dd);
drop-shadow(offset-x offset-y blur-radius color)
h1 {
text-shadow: 2px 2px;
}