Convert LESS nested CSS to standard CSS

后端 未结 6 1586
感动是毒
感动是毒 2021-01-29 10:53

I need help trying to convert this LESS nested CSS to standard CSS. Can anybody help?

.leftNav {
    a.TopLevel {
        float:none;
    }

    ul#topnav {
             


        
6条回答
  •  孤城傲影
    2021-01-29 11:18

    This is the easiest way to use Less:

    1. Create style.css file
    2. Create style.less file
    3. In index.php link to those file:

      
      
      

      Notice that to link to less you should end the rel="" with /less:

      rel="stylesheet/less".
      
    4. download http://winless.org/

    5. Drag your project folder to this program and it'll convert your less file to css.

提交回复
热议问题