0

我正在将站点转换为 RWD(非后轮驱动),但突然遇到了问题。

作为诊断的一部分,我尝试在我的 css 文件中进行回溯,以便 mobile.css 的唯一更改是从 #000 到 #FFF 的背景颜色,所以我可以看到更改何时生效,但我无法让它切换样式表。

这是我在头部中按顺序排列的标签

<head>

<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="canonical" href="http://www.your-adrenaline-fix.com/about.html">

<!-- no-rss -->

<title>About Me and How to Contact Me</title>

<meta name="Description" content="About Me and How to Reach Me with Questions, Comments or Suggestions.">

<link rel="stylesheet" type="text/css" media="screen and (max-device-width: 480px)" href="support-files/mobile.css"/>

<?php include 'z-end-of-head.php'; ?> //This houses the standard style sheet along with GA code etc

</head>

这是页面:http ://www.your-adrenaline-fix.com/about.html

如果有人可以与我分享为什么该站点不再在样式表之间切换,我将不胜感激,因为我尝试过移动标签并且工作正常,但似乎没有任何效果。

4

1 回答 1

0

在 PHP 添加所有其他 CSS 文件之后将 移至ie<link rel="stylesheet" type="text/css" media="screen and (max-device-width: 480px)" href="support-files/mobile.css"/>之前。</head>

于 2013-09-18T15:32:15.977 回答