デスクトップ ユーザーの場合は画面の右側に、モバイルの場合は下部にツールセットを設定するメディア クエリと対応する CSS があります。ただし、CSS プロパティをオーバーライドし、「左」と「右」の両方に 0 を割り当てます。私が間違っていることは何ですか?以下の firebug のスクリーンショットをご覧ください。
ここに私のメディアタグがあります:
/*
- Binds all layouts together with imports and mediaqueries.
*/
//@import "libs/reset.less";
@import "mediaqueries/global.less";
@import "mediaqueries/desktop.less";
@import "mediaqueries/mobile.less";
@media only screen and (min-width: 480px) {
.mqMobile; /* Use mix-in to make sure that the styles are expanded inside the mediaquery */
}
@media only screen and (min-width: 992px) {
.mqDesktop; /* Use mix-in to make sure that the styles are expanded inside the mediaquery */
}