怎么html引用css不成功

10.html文件
<html>
<head>
<link href="10.css" rel="stylesheet" type="text/css">
</head>
<body>
<span class="style1">新闻一</span><br/>
<span class="style1">新闻二</span><br/>
<span class="style1">新闻三</span><br/>
<span class="style1">新闻四</span><br/>
</body>
</html>
10.css文件
<style>
.style1{
font-size:20px;
color:red;
font-weight:bold;
font-style:normal;
text-decoration:underline;
}
</style>

第1个回答  2015-12-02
从引用的地址来看,要确保html与css放在同一个文件夹下,才行。
第2个回答  2015-12-02
10.css文件 ,不要前面<style>和后面的</style>

.style1{
font-size:20px;
color:red;
font-weight:bold;
font-style:normal;
text-decoration:underline;
}
第3个回答  2015-12-02
<link href="10.css" rel="stylesheet" type="text/css"> 你检查一下你的href路径对不对
第4个回答  2015-12-02
10.css文件里把style标签去掉本回答被提问者采纳
相似回答