why are only the last two #html, #media query breakpoint, #links working?

放肆的年华 提交于 2019-12-12 03:50:10

问题


Hello my question is simple. I want link to multiple css stylesheets from my html but when i list the stylesheets only the last two links are being shown in my browser. All of the links, css work individually. But when i link all 5 from my html only the last two links work.

<head>
<title></title>
<meta charset="UTF-8" >
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" media="(max-width: 319px)" href="css/minimum.css">
<link rel="stylesheet" media="(max-width: 480px)" href="css/smartphone-max.css">
<link rel="stylesheet" media="(min-width: 320px)" href="css/smartphone-min.css">
<link rel="stylesheet" media="(max-width: 1024px)" href="css/ipads-max.css">
<link rel="stylesheet" media="(min-width: 768px)" href="css/ipads-min.css">
</head>

来源:https://stackoverflow.com/questions/38859900/why-are-only-the-last-two-html-media-query-breakpoint-links-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!