-2

I'm exploring less/sass tools and I have difficulties to have a clear picture. My first question, is LESS compatible with chrome15/where can I find a table of compatibilities.

Nonemoticoner
  • 650
  • 5
  • 14
François Richard
  • 6,817
  • 10
  • 43
  • 78

1 Answers1

2

Chrome or any browser for that matter never sees your LESS files. Ideally, your files would have compiled to CSS before the browser ever sees it.

Louis
  • 1,194
  • 1
  • 10
  • 15
  • on the less documentation it's written it can work browser side, meaning you compile it browser side isn't it ? then will it work with any browser version ? – François Richard Mar 13 '16 at 18:18
  • That functionality is not native on the browser. What you end up doing is compiling your less script at runtime using js. I personally can't think of an instance where this is recommended above compiling during build. See http://stackoverflow.com/questions/10554462/how-can-i-compile-less-files-within-browser – Louis Mar 13 '16 at 19:31