今回はLessのインストールと使用手順を詳しく説明します。Lessのインストールと使用における注意点は何ですか?実際の事例を見てみましょう。
node.jsのインストール
公式Webサイト: http://nodejs.cn/
コマンドラインでインストールが成功したか確認してください
ディレクトリ, package.jsonファイルの初期化
jQueryパッケージのインストールとアンインストール(例) インストール
アンインストール
タオバオミラーのインストール
2.少ない
試してみましょう:
test.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link rel="stylesheet" href="style.css" rel="external nofollow" /> </head> <body> <p id="box"> <ul> <li>你好</li> <li>hello</li> </ul> </p> </body> </html>
style.less
#box{ width:200px; height:200px; background-color:blue; ul{ color:white; li{ line-height:50px; } } }
コマンドラインにlessc xxx.less xxx.cssを入力し、
次のように入力します:
ブラウザでtest.htmlを開きます効果を見てみましょう 3.less の基本的な使い方
https://less.bootcss.com/
Variables
@red:red; @w:200px; #big{ width:@w; height:@w; background-color:@red; #small{ width:@w; height:@w; background-color:@red; } } p{ color:@red; }
Mixing
.bt{ width:200px; height:200px; border-top:2px solid red; background-color:red; } #big{ .bt; #small{ .bt; } }
• 入れ子
#box{ width:100%; height:60px; background-color:#ccc; h3{ width:100%; height:20px; background-color:yellow; } ul{ list-style:none; li{ height:40px; line-height:40px; float:left; padding:0 10px; } } }
• 操作
@color:#333; #box{ width:100%; height:60px; background-color:@color+#111; } •calc() @var:50vh/2; #box{ width:calc(50% + (@var - 20px)); }
• 固定関数
@base:#f04615; @width:0.5; #box{ width:percentage(@width); color:saturate(@base,5%); background-color:spin(lighten(@base,25%),8); }
•注意
//单行注释// /*多行 注释*/ •引入其他less文件 @import "other.less";
この記事の事例を読んだ後は、この方法を習得したと思います。さらに興味深い情報については、php 中国語 Web サイトの他の関連記事に注目してください。
推奨読書:
以上がインストールと使用手順を少なくするための詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。