MEDIA QUERY CSS3
by hellosze
HTML
<body>Hello World</body>
CSS
@media screen and (orientation:portrait) {
body {
background-color: #800;
}
}
@media screen and (orientation:landscape) {
body {
background-color: #008;
}
}
by hellosze
<body>Hello World</body>
@media screen and (orientation:portrait) {
body {
background-color: #800;
}
}
@media screen and (orientation:landscape) {
body {
background-color: #008;
}
}