顏色運(yùn)算?!誰(shuí)能馬上心算告訴我 #324223 + #745689 是什么顏色,親手在下一拜!
2018-07-10
$width:200px;
$height:height;
body {
width: $width;
${$$height}: 300px;
}
$height:height;
body {
width: $width;
${$$height}: 300px;
}
2018-06-22
我在瀏覽器中直接更改Sass文件,不能相應(yīng)的更改css文件,同時(shí)點(diǎn)擊保存還會(huì)出現(xiàn)黃色感嘆號(hào)
2018-06-13
有趣有趣,一個(gè)晚上+一個(gè)早上入門(mén)了scss,下次就在項(xiàng)目中使用了
2018-05-26
數(shù)值,字符串,顏色,布爾值,空值null,列表,映射(也叫字典,對(duì)象),函數(shù)function。老師這里少了兩個(gè)
2018-05-17
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
有個(gè)問(wèn)題:%mt5{margin-top:5px;}
%pt5{padding-top:5px;}
.btn{
@extend %mt5;
@extend %pt5;
}
最終編譯不會(huì)合在一起的:CSS
.btn{margin-top:5px;}
.btn{padding-top:5px;}
這就很不爽了?。?!
%pt5{padding-top:5px;}
.btn{
@extend %mt5;
@extend %pt5;
}
最終編譯不會(huì)合在一起的:CSS
.btn{margin-top:5px;}
.btn{padding-top:5px;}
這就很不爽了?。?!
2018-05-17
混合宏可以傳入?yún)?shù),相對(duì)于更靈活一點(diǎn)。繼承是把一個(gè)塊樣式拿來(lái)直接使用
2018-05-17