How to neutralize box-shadow?

Css

Css Problem Overview


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?

Css Solutions


Solution 1 - Css

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

box-shadow: none;

To disable the shadow.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJitendra VyasView Question on Stackoverflow
Solution 1 - CssWouter JView Answer on Stackoverflow