less.ruby
less.ruby copied to clipboard
Can't parse print CSS
I get a parse errror using less 1.2.19 with print CSS selectors:
@page { margin: 2cm }
@page :first {
margin-top: 10cm
}
The CSS paged media specification: http://www.w3.org/TR/css3-page/
@page { ... } is not working as of now. A temporary solution might be to use something like this:
@page :left, @page :right { ... }