Closed. This question needs details or clarity。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗?添加详细信息并通过editing this post阐明问题。
                        
                        5年前关闭。
                                                                                            
                
        
我经常同时设置宽度和高度,所以我这样写。

@mixin size($width,$height){width:$width + px; height:$height + px;}

有更好的方法吗?

我以为有一个默认的mixin,但是找不到。

最佳答案

取出+ px。这样做将使您的mixin更具灵活性:

@mixin size($width, $height) {
  width: $width;
  height: $height;
}


然后,在使用mixin时,您可以指定各种单位,例如像素,em,百分比等:

#element {
  @include size(50%, 100px);
}


demo

关于css - 在CSS3,SSS或罗盘中设置宽度和高度的好方法是什么? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19245472/

10-11 12:52
查看更多