国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開(kāi)發(fā) > CSS > 正文

詳解CSS的Sass框架中代碼注釋的編寫(xiě)方法

2024-07-11 08:33:08
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

在 Sass 中注釋有兩種方式:
1、類(lèi)似 CSS 的注釋方式,使用 ”/* ”開(kāi)頭,結(jié)屬使用 ”*/ ”
2、類(lèi)似 JavaScript 的注釋方式,使用“//”
Sass 支持標(biāo)準(zhǔn)的CSS多行注釋以/* */以及單行注釋 //。

兩者區(qū)別:前者會(huì)在編譯出來(lái)的 CSS 顯示,后者在編譯出來(lái)的 CSS 中不會(huì)顯示

在盡可能的情況下,多行注釋會(huì)被保留在輸出的CSS中,而單行注釋會(huì)被刪除。 例如:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. /* This comment is    * several lines long.  
  2.  * since it uses the CSS comment syntax,    * it will appear in the CSS output. */  
  3. body { color: black; }        
  4. // These comments are only one line long each.    // They won't appear in the CSS output,   
  5. // since they use the single-line comment syntax.    a { color: green; }  

編譯為:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. /* This comment is    * several lines long.  
  2.  * since it uses the CSS comment syntax,    * it will appear in the CSS output. */  
  3. body {      color: black; }   
  4.      a {   
  5.   color: green; }  

如果多行注釋的第一個(gè)字母是 !,那么注釋總是會(huì)被保留到輸出的CSS中,即使在壓縮輸出模式下。這可用于在你生成的CSS中添加版權(quán)聲明。

使用插值語(yǔ)句 (interpolation) ,可以將變量值輸出到多行注釋中,例如:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. $version: "1.2.3";    /* This CSS is generated by My Snazzy Framework version #{$version}. */  

編譯為:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. /* This CSS is generated by My Snazzy Framework version 1.2.3. */  
發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 日喀则市| 佛学| 大姚县| 南安市| 竹山县| 香港 | 铜梁县| 望谟县| 白山市| 佛坪县| 甘孜县| 饶河县| 扬中市| 灵山县| 鄄城县| 乌拉特后旗| 西乡县| 江阴市| 香港| 紫金县| 达拉特旗| 出国| 南投市| 凤台县| 沾益县| 什邡市| 太白县| 青铜峡市| 阳谷县| 贵溪市| 当涂县| 尼玛县| 江达县| 广丰县| 蚌埠市| 房产| 娄烦县| 涟水县| 田东县| 龙山县| 兰考县|