Published
- 1 min read
remove box shadow css
The solution for this is noted below
remove box shadow css
Solution
/* remove shadows by xomisse */
.selector{
-moz-box-shadow: none;
-goog-ms-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
Try other methods by searching on the site. That is if this doesn’t work