Convert LESS nested CSS to standard CSS

后端 未结 6 1587
感动是毒
感动是毒 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:42

    The whole point of LESS is that you write the LESS-style CSS, and the LESS interpreter converts it to normal CSS.

    So just run your LESS code through LESS, and you'll get the equivalent normal CSS.

    Simple.

提交回复
热议问题