|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
按小甲鱼写的敲了一遍,HTML和css放在同一文件夹下,检查几遍路径最后还是引用不出来css,这是怎么回事啊?
<link rel="sylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" media="print" href="print.css">
<link rel="stylesheet" type="text/css" media="screen and (min-width:512px) and (max-width:1024px)">
style.css里的代码:
body{
background-image:url("../img/back.png")
}
h1{
text-align:center;
color:blue;
}
h2{
margin-left:60%;
color:blue;
}
p{
text-indent:32px;
font-size:16px;
line-height:32px;
color:blue;
}
img{
position:absolute;
left:50%;
margin-left:-181px
}
第一个 link 标签的 rel 值错误,少了个 t 应该是 rel="stylesheet" 后两者的书写是正确的
|
|