Skip to content Skip to sidebar Skip to footer

Min-width And Max-width Css Media Queries

Shouldn't that line of code do so that the st

Solution 1:

May be you have to define device-width instead of simple width. Write like this:

<link href="css/mobile-large.css" media="all and (min-device-width: 481px) and (max-device-width: 760px)" rel="stylesheet"type="text/css" />

Solution 2:

I think also you can remove "all and" from the query string.

Post a Comment for "Min-width And Max-width Css Media Queries"