Change layout based on height
@media only screen and (max-height: 600px) { // something awesome here }
Change a layout based on width or height
@media only screen and (max-width: 1060px), screen and (max-height: 600px) { // something awesome here }
Change a layout based on width and height
@media only screen and (max-width: 1060px) screen and (max-height: 600px) { // something awesome here }
Recent Comments