I am trying to compile my print styles using less, and I'm running into a problem when using @bottom for footers the @bottom cause problems with LESS becasue the '@' symbol is reserved for variable names.
Examples:
@page foot {
margin: @paper-margin @paper-margin @footer-height @paper-margin;
@bottom {
content: flow(footer);
}
}
I never had this problem with SASS as the variables use '$', but I would prefer to use LESS instead of SASS. Are there any workarounds to this problem without making a separate css file?
Examples:
@page foot {
margin: @paper-margin @paper-margin @footer-height @paper-margin;
@bottom {
content: flow(footer);
}
}
I never had this problem with SASS as the variables use '$', but I would prefer to use LESS instead of SASS. Are there any workarounds to this problem without making a separate css file?
Edited by Cuberic