all ipad resolutio css

Solutions on MaxInterview for all ipad resolutio css by the best coders in the world

showing results for - "all ipad resolutio css"
Greta
02 Feb 2020
1@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
2  .ipad-portrait { color: red; } /* your css rules for ipad portrait */
3}
4@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
5  .ipad-landscape { color: blue; } /* your css rules for ipad landscape */
6}
7