less.ruby
less.ruby copied to clipboard
@media support
This valid CSS:
@media screen {
body {
color:red;
}
h1 {
color:blue;
}
}
get compiled to
@media screen body { color: red; }
@media screen h1 { color: blue; }
(note the missing curly braces and the repetition of @media screen
)
Reference: http://www.w3.org/TR/CSS2/media.html#at-media-rule
I assume this tag means that this feature will not be implemented in comand-line Less? I must admit this is disappointing.
Additionally, using media queries throws an error. For example, try
@media screen and (max-width: 500px) {
.iphone-stuff {
color: blue;
}
}