Files
less.js/test/css/media.css
2010-11-27 06:34:17 +08:00

22 lines
254 B
CSS

@media print {
.class {
color: blue;
}
.class .sub {
width: 42;
}
.top, header > h1 {
color: #444444;
}
}
@media screen {
body {
max-width: 480;
}
}
@media all and (orientation:portrait) {
aside {
float: none;
}
}