Only 1 LESS CSS file valid

I am trying to insert multiple .less files like this

 <head> <link href="mine.less" media="screen" rel="stylesheet/less" type="text/css" /> <link href="friend.less" media="screen" rel="stylesheet/less" type="text/css"/> </head> 

but I find that only the first is used, and the other drops out. Regular .css files allow multiple .css files to be used. Is it something else or am I something wrong?

+6
css less
source share
1 answer

Have you tried using @import [FILENAME.LESS]; in masterless file?

According to: http://techportal.inviqa.com/2010/12/17/lessphp-php-implementation-of-less-css/

+6
source share

All Articles