我的网页未链接样式表。不确定这是我第一次使用样式表。需要了解我是否只是遗漏了一些东西。愿意发送整个文件,如果它有助于了解我的错误将来自何处。我有。路径都在根文件夹中。不知道我错过了什么。 HELPPP !!
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>REID RULES IT</title>
<meta charset="utf-8" />
</link rel="stylesheet" href="style.css" type="text/css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body class="body">
....
..
.
</body>
</html>
CSS
body {
background-image: url('img/logo.jpg');
color:#000305;
font-size: 87.5% /* base font size is 14px */
font-family: Arial, 'Lucida Sanas Unicode';
line-height: 1.5;
text-align: left;
}
a {
text-decoration: none;
}
a:link, a:visited {
}
a:hover, a:active {
}
.body {
margin: 0 auto;
width: 70%;
clear:both;
}
.mainHeader img{
width: 30%;
height: auto;
margin: 2% 0;
}
.mainHeader nav {
background-color: #666;
height:40px;
border-radius:5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
.mainHeader nav ul {
list-style: none;
margin: 0 auto;
}
.mainHeader nav li {
float: left;
display: inline;
}
答案 0 :(得分:0)