Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to neutralize box-shadow?

Tags:

css

Currently I'm using this

box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset; 

but on specific size of screen I don't want box-shadow.

How can i override to disable the shadow?

like image 320
Jitendra Vyas Avatar asked Jan 15 '12 16:01

Jitendra Vyas


People also ask

How do I get rid of box shadow on top?

The box-shadow styles are used to pay attention to the content. Primer CSS Box Shadow Remove style is mainly used to remove the box-shadow. To remove the box-shadow, we will add an additional class . box-shadow-none.

How do you box shadow only the bottom?

Use the box-shadow Property to Set the Bottom Box Shadow in CSS. We can use the box-shadow property to set the shadow only at the bottom of the box. The box-shadow property sets the shadow of the selected element.


1 Answers

Use CSS3:: Media Queries to create style based on the screen resolution. And use

box-shadow: none; 

To disable the shadow.

like image 152
Wouter J Avatar answered Sep 29 '22 03:09

Wouter J