$width:200px;
$height:height;
body {
width: $width;
${$$height}: 300px;
}
$height:height;
body {
width: $width;
${$$height}: 300px;
}
2018-06-22
最新回答 / cryingcat
瀏覽器貌似不能直接用sass語法,他不會自動的編譯成css。但是我奇怪的是在瀏覽器看到的難道不是編譯后的css嗎?你直接更改sass文件是什么意思。是更改resource里面的sass源文件嗎.? 兄弟你這操作有點騷啊
2018-06-13
numbers (e.g. 1.2, 13, 10px)
strings of text, with and without quotes (e.g. "foo", 'bar', baz)
colors (e.g. blue, #04a3f9, rgba(255, 0, 0, 0.5))
booleans (e.g. true, false)
nulls (e.g. null)
lists of values, separated by spaces or commas
maps from one value to another
function references
strings of text, with and without quotes (e.g. "foo", 'bar', baz)
colors (e.g. blue, #04a3f9, rgba(255, 0, 0, 0.5))
booleans (e.g. true, false)
nulls (e.g. null)
lists of values, separated by spaces or commas
maps from one value to another
function references
2018-05-17