Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,所以我正在尝试构建响应式设计,需要做的一件事是忽略图像滑块的整个样式表(因为我正在使用的样式表在使用特定主题时具有固定尺寸)。
那么,有什么方法可以忽略该特定文件中的每个 CSS 规则?
最简单的方法是不以编程方式在该页面上加载 css。
否则,您可以指定设备或视口宽度(无论您用于调整大小)以仅在屏幕大小匹配时加载样式表。
就像是:
<link rel="stylesheet" type="text/css" media="screen and (max-device-width: 480px)" href="alternate.css" />
你不能在每个你不想展示的媒体查询的滑块容器上显示:none 吗?