您好,登錄后才能下訂單哦!
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style type="text/less"> /* 結構嵌套和變量作用域 樣式的結構可以像html結構來一樣嵌套,并對應其樣式。 對于變量,可以通過樣式的結構來設定作用域。 */ @color:red; div{ background-color: @color; div{ @color:blue; background-color: @color; } } </style> </head> <body> <div> hello world1 <div> hello world2 </div> hello world3 </div> <script type="text/javascript" src="js/es5-shim.js"></script> <script type="text/javascript" src="js/less.min.js"></script> <script type="text/javascript"> less.watch(); </script> </body> </html>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。