In the following example, I want to display only one div, depending on the device.
div
I\'m familiar with how to use @media to override a CSS cla
@media
how to do a conditionnal css media query :
@media only screen and (width : 1024px) and (orientation : landscape) { .selector1 { width:960px; } }