Reputation: 305
Hi can anyone help me with this I'm having a problem when it comes to a media query CSS. I'm trying to make my div 70% on certain width of the screen. However, when checking it on the browser it's not working. But, when I'm using !important it's working fine. However, my goal is not to use !important. Can anyone help me? Thanks
Upvotes: 0
Views: 141
Reputation: 155270
@import
).@query
-wrapped rule is on line 2679.@query
rule because it has the same specificity unless you use !important
.@query
rule more specific. or...!important
. or...@query
rules to the bottom of your stylesheet.Upvotes: 4