我正在构建一个移动应用程序,在我的CSS中,我指定将背景颜色更改为蓝色。我可以在设计视图中看到更改,但不能在实时视图中看到。我正在使用Dreamweaver和PhoneGap,因此当我在Phone Gap上构建我的项目时,实时视图是维护的,并且保留了背景颜色的缺失。我不知道发生了什么,任何帮助都会太大了!
// HTML
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Travelers Aid</title>
<link href="jquery-mobile/jquery.mobile.theme-1.3.0.min.css" rel="stylesheet" type="text/css">
<link href="jquery-mobile/jquery.mobile.structure-1.3.0.min.css" rel="stylesheet" type="text/css">
<link href="style-one.css" rel="stylesheet" type="text/css">
</head>
<body>
//home page//
<div data-role="page" id="Home">
<h1 id="title" align="center">Travelers Aid</h1>
<div data-role="fieldcontain">
<select name="selectmenu" id="selectmenu">
<option value="english">English</option>
<option value="french">French</option>
<option value="spanish">Spanish</option>
</select>
<div data-role="content"><a href="#SearchPage" data-role="button">Travel</a>
</body>
</html>
// CSS
@charset "utf-8";
#Home{background-color: rgb(26,71,81);}
h1{color: rgba(255,255,255,1.00);
font-family: raleway;}
奇怪的是文本颜色是保持的...所以我真的不明白。