次のダミーの例のようなものがsass/scssで可能ですか?さまざまなデバイスで無限のメディアクエリが繰り返されるのを防ぐために、このようなものが必要です。
// The dummy mixin
@mixin iphone_rules($webapp_portrait:null){
@if($webapp_portrait != null){
// Portrait (webapp)
@media screen and (max-height: 460px){
// The following line is just a dummy
eg. echo $webapp_portrait;
}
}
}
// How I want to use it
.mySelector{
margin-left:10px;
padding:0px;
@include iphone_rules('margin-left:20px; padding:2px;');
}