CSS: есть ли более короткий способ написать несколько медиа-запросов? ⇐ CSS
-
Anonymous
CSS: есть ли более короткий способ написать несколько медиа-запросов?
This is the code I've written out, but there has to be a more condensed, elegant, and effective way to write media queries for scaling screens, right?
selector { padding-left: 19% } @media only screen and (min-width: 1300px) { selector { padding-left: 17% } } @media only screen and (min-width: 1420px) { selector { padding-left: 17% } } @media only screen and (min-width: 1480px) { selector { padding-left: 16.5% } } @media only screen and (min-width: 1520px) { selector { padding-left: 16% } } @media only screen and (min-width: 1585px) { selector { padding-left: 15.5% } } @media only screen and (min-width: 1620px) { selector { padding-left: 15% } } @media only screen and (min-width: 1720px) { selector { padding-left: 14% } } @media only screen and (min-width: 1820px) { selector { padding-left: 13% } } @media only screen and (min-width: 1920px) { selector { padding-left: 12% } }
Источник: https://stackoverflow.com/questions/780 ... ia-queries
This is the code I've written out, but there has to be a more condensed, elegant, and effective way to write media queries for scaling screens, right?
selector { padding-left: 19% } @media only screen and (min-width: 1300px) { selector { padding-left: 17% } } @media only screen and (min-width: 1420px) { selector { padding-left: 17% } } @media only screen and (min-width: 1480px) { selector { padding-left: 16.5% } } @media only screen and (min-width: 1520px) { selector { padding-left: 16% } } @media only screen and (min-width: 1585px) { selector { padding-left: 15.5% } } @media only screen and (min-width: 1620px) { selector { padding-left: 15% } } @media only screen and (min-width: 1720px) { selector { padding-left: 14% } } @media only screen and (min-width: 1820px) { selector { padding-left: 13% } } @media only screen and (min-width: 1920px) { selector { padding-left: 12% } }
Источник: https://stackoverflow.com/questions/780 ... ia-queries
Мобильная версия