1.我写了一个外部样式文件,可是运行html文件后没有效果。哪个老师,指导一下!!万分感谢!!css文件:<html>
<head>
<meta http-equiv="content type" content="txt/html;charset=gb2312"><title>例11</title>
p{ /*设置段落<p>的样式:字体、字号和背景色*/
color:blue;/*字体颜色为蓝色*/}</head>
<body></body>
</html>
html文件:<html>
<head>
<meta http-equiv="content-type" content="txt/html;charset=gb2312">
<title>行样式、内嵌样式、外部引用样式的优先级</title>
<style>
@import  1.css;/*无法引用外部样式文件*/
</style>
</head>
<body>
<p >世界第一等!</p>
</body>
</html>