CSS 属性 不适用于主体 class
CSS property is not working for main body class
This 是我们将浏览器最小化到 320px 时的网站 所有相应的 classses css 属性都工作正常,除了主体 class .即使我在属性中使用重要,它的宽度也不能改变,如何解决这个问题
您在 grid.css 中设置了 min-width: 960px;
。您也需要覆盖它。
看起来 body { min-width: 960px;}
在 grid.css
的第 2 行没有设置媒体查询
This 是我们将浏览器最小化到 320px 时的网站 所有相应的 classses css 属性都工作正常,除了主体 class .即使我在属性中使用重要,它的宽度也不能改变,如何解决这个问题
您在 grid.css 中设置了 min-width: 960px;
。您也需要覆盖它。
看起来 body { min-width: 960px;}
在 grid.css