0

显然这里有些不对劲。#wrap 的 CSS 只是没有显示出来。不知道我做错了什么。请在下面查看我的代码:

<html>
<head>
<title> WhateverWorks </title>
<style>
body{
background-color: #0066CC;
color: white;
}
h1{
font-size: 18pt;
color: white;
font-style: bold;
font-family: calibri;
}
#wrap{
border solid 2px #000;
background-color: #00033;
width: 800px;
height: 200px;
}
</style>
</head>
<body>
<div id="wrap">
This site is under construction...<br /> please see our facebook page for now!
</div>
</body>
</html>
4

2 回答 2

5

你忘记了:后边界

border: solid 2px #000;
于 2013-10-08T14:09:50.930 回答
1

font-style: bold;

-> 这是font-weight: bold;

border solid 2px #000;

-> 缺少一个冒号 (:):border:solid 2px #000;

background-color: #00033;

-> 缺少一个数字,十六进制有 6 个数字

/edit:如果您的 CSS 不起作用,请尝试http://jigsaw.w3.org/css-validator/ 。

于 2013-10-08T14:12:25.130 回答