Answers for "how to add background shadow css"

CSS
67

css box shadow

/* offset-x | offset-y | blur-radius | spread-radius | color */
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
Posted by: Guest on August-13-2020
6

drop shadow css

filter: drop-shadow(30px 10px 4px #4444dd);
drop-shadow(offset-x offset-y blur-radius color)
Posted by: Guest on December-08-2020
0

add shadow to background image css

box-shadow: inset 0 0 5px 2px #282a2d; /* mark the inset */
Posted by: Guest on July-30-2020
1

how to add shadow css

h1 {
  text-shadow: 2px 2px;
}
Posted by: Guest on February-19-2021
0

how to add background shadow css

box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
Posted by: Guest on February-09-2021

Browse Popular Code Answers by Language