0
我對Neat很新,目前正在研究一個顯示圖像庫的簡單網格。整齊/歐米茄網格問題
我的代碼
$mobile: new-breakpoint(max-width 500px);
$tablet: new-breakpoint(max-width 768px);
article{
background-color: #efefef;
margin-bottom: 2em;
@include span-columns(3);
@include omega(4n);
@include media($tablet){
background-color: orange;
@include span-columns(4);
@include omega(3n);
}
@include media($mobile){
background-color: yellow;
@include span-columns(6);
@include omega(2n);
}
}
現在桌面上的所有節目,因爲它應該,但是當我調整爲平板或移動,佈局休息和我在佈局獲得巨大的差距.. (我希望有人可以幫助我
謝謝!謝謝邁克!這樣做的訣竅,你無法想象我浪費了多少時間試圖讓它工作!真的很感激它,你真棒:D – user5898548