復雜的混合宏中,@include prefixer(box-shadow, $shadow);是什么意思
復雜混合宏中, @mixin box-shadow($shadow...) { ?@if length($shadow) >= 1 { ? ?@include prefixer(box-shadow, $shadow); ?} @else{ ? ?$shadow:0 0 4px rgba(0,0,0,.3); ? ?@include prefixer(box-shadow, $shadow); ?} } 這個@include prefixer(box-shadow, $shadow);是什么意思?
2018-12-17
此處?調用prefixer函數,類似于require()或者php等語言的include
2017-04-08
調用 申明的box-shadow的宏