HTML:
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Some Title</title>
</head>
<body>
<div id="header"></div>
<div class="left"></div>
<div class="right"></div>
<div id="footer"></div>
</body>
</html>
CSS:
div {
border-radius: 5px;
}
.header {
height: 100px;
width: 75%;
background-color: black;
}
#left {
height: 600px;
width: 30%;
background-color: gray;
}
#right {
height: 600px;
width: 50px;
background-color: blue;
}
.footer {
height: 100px;
width: 75%;
background-color: black;
}
如果有什么东西忘记了代码并且完全错误,有人可以向我指出吗?div没有出现在我面前。