我正在尝试合并此 sass 代码,但它没有发生,请让我知道如何实现它的过程。
@charset "utf-8";
/* CSS Document */
h1 { color:#0ec3f7;}
$divColor : #f8f9be;
$borderStyle : dotted;
$width : 700px;
$height : 200px;
#first {background-color:divColor; border:1px borderStyle #F00; width:width; height:height;}
这是html文件
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>css-saas-less</title>
<link rel="stylesheet" href="sasstemp.scss" />
</head>
<body>
<h1> CSS preprocessors </h1>
<div id="first">welcome to sass.....
</div></body>
</html>