0
votes

How to combine following media queries:

@media (min-height: 768px) and (max-width: 1054px), (min-height: 768px) and (max-width: 1366px){} It works only for (min-height: 768px) and (max-width: 1054px), but for (min-height: 768px) and (max-width: 1366px) is not working.

1
How wide is your screen?Anubhav

1 Answers

3
votes

This Will work

@media all and (min-height: 768px) and (max-width: 1054px), (max-width: 1366px){}