2
我有兩個媒體查詢我scss
文件合併象下面這樣:如何添加當媒體查詢結合特定媒體查詢規則
@media all and (min-width: 600px) and (orientation: portrait),
// add css rule to the above media query
all and (min-width: 601px) and (max-width: 840px) and (orientation : portrait) {
border: 1px solid #red
// add specific css rule to current media query only
}
我將如何添加特定的規則在這種情況下,每個查詢?