只是为了测试和学习 css3,我正在尝试创建小型移动网站。但是现在我在定位样式表方面遇到了小问题。我这样做是这样的:
<link rel="stylesheet" media="only screen and (max-width: 180px)" href="xsmall.css" />
<link rel="stylesheet" media="only screen and (min-width: 240px)" href="small.css" />
<link rel="stylesheet" media="only screen and (min-width: 320px)" href="medium.css" />
<link rel="stylesheet" media="only screen and (min-width: 480px)" href="large.css" />
<link rel="stylesheet" media="only screen and (min-width: 540px)" href="wide.css" />
不幸的是,更改 xsmall.css 后更改在其他 Web 版本中也可见(对于 480 像素、540 像素等)。我在 Opera Mobile Emulator 上测试网站(移动版)。我做错了什么?
谢谢