Issue
How to create shadows in css inside an element ?
I already tried this way but couldn't get anything:
#element { shadow: 10px black; }
Solution
You can try this way:
.shadow {
box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
}
.shadow-inset {
box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3) inset;
}
Answered By - Linko
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.