商店系统中的媒体查询

Mediaquerys in a shopsystem

本文关键字:媒体 查询 系统      更新时间:2023-09-26

我使用一个叫做"Prestashop"的购物系统,它基本上是免费的,但支持一堆模块。我在几年前购买了一个模块,用javascript或css3管理网站的背景。

我也可以添加。css元素,所以我这样编辑它:

.nav .container { background: #333; }
.container {background: #f6f6f6;}
.functional-buttons {display:none!important}
@media (min-width: 1900px!important)

除了最后一个,其他的都在工作。这个想法是,如果屏幕分辨率是1900px或更高,只显示模块背景。我很确定我失败了,但我希望你们能帮助我:)

@media (min-width: 1900px!important) {
.nav .container { background: #333; }
.container {background: #f6f6f6;}
.functional-buttons {display:none!important}
}

是这样吗?