色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

LESS 導入選項內聯關鍵字


描述

@import(inline)會將CSS復制到輸出CSS文件中,而不進行處理。 當CSS文件不是LESS兼容時,這是有用的。 雖然LESS支持大多數標準CSS,但在某些地方不支持注釋,并且不修改CSS,它不會支持所有已知的CSS hacks。 即使@import(inline)不會處理CSS,它將確保所有的CSS將在一個文件中。 這是在版本1.5.0 中發布的。


例子

以下示例演示了在LESS文件中使用引用關鍵字:

<html>
<head>
  <link rel="stylesheet" href="style.css" type="text/css" />
  <title>Import Option Inline</title>
</head>
<body>
<h1>Welcome to Tutorialspoint</h1>
<p>LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p>
</body>
</html>


接下來,創建文件 style.less 。

style.less

@import (inline) "http://www.w3cschool.cn/statics/demosource/import_inline.css";
p {
  color:red;
}

import_inline.css文件將從路徑//www.w3cschool.cn/statics/demosource/import_inline.css導入style.less中,以下代碼:

import_inline.css

.style {
    font-family: "Comic Sans MS";
    font-size: 20px;
}


您可以使用以下命令將 style.less 編譯為 style.css :

lessc style.less style.css


接下來執行上面的命令,它將用下面的代碼自動創建 style.css 文件:

style.css

.style {
    font-family: "Comic Sans MS";
    font-size: 20px;
}
p {
  color: red;
}


輸出

讓我們執行以下步驟,看看上面的代碼如何工作:

  • import_options_inline.html文件中保存html代碼。

  • 在瀏覽器中打開此HTML文件,將顯示如下輸出。


輸出
如果您嘗試在 style.less 中的 p 標簽中使用 .style 類,則會拋出未定義的錯誤。