ホームページ > 記事 > ウェブフロントエンド > 切実に質問します:CSS_html/css_WEB-ITnoseのネスト記述について
<!DOCTYPE ><html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> new document </title> <meta name="generator" content="editplus" /> <meta name="author" content="" /> <meta name="keywords" content="" /> <meta name="description" content="" /> <style type="text/css"> .d{ .s{ color:red; } } /*.d .s{ color:red; }*/ </style> </head> <body> <div id="" class="d"> <span class="s">hello !</span> </div> </body></html>
しかし、この Web サイトを見てください: http://www.css2less.net/ ?
http://www.ibm.com/developerworks/cn/web/1207_zhaoch_lesscss/
これはネイティブ CSS ではなく、LESS 形式をロードする必要があります。 js コンパイラは、LESS ファイルを静的 CSS ファイルにコンパイルし、HTML ドキュメントに適用します。
ありがとうございます、私は以前混乱していました。