欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php引入css文件出错,但是网页已经有样式了

程序员文章站 2022-03-16 13:49:39
...
求助:php引入css文件出错,但是网页已经有样式了,错误代码如下


回复讨论(解决方案)

代码如下:php代码








top




user

news

pic

rec


picnews

newslist




网页已经有CSS的样式了,但是报ERROR,以下为css代码:
@CHARSET "UTF-8";
body,h1,h2,h3,p,form,ul,li,dl,dt,dd {
padding:0;
margin:0;
}
body {
width:960px;
margin:0 auto;
background:#fff;
}
#top {
height:26px;
background:red;
margin:0 0 10px 0;
}
#header {
height:80px;
background:green;
margin:0 0 10px 0;
}
#nav {
height:35px;
background:navy;
}
#search {
height:35px;
background:maroon;
margin:0 0 10px 0;
}
#user {
width:270px;
height:400px;
background:orange;
float:right;
margin:0 0 10px 0;
}
#news {
width:400px;
height:400px;
background:blue;
float:right;
margin:0 10px 10px 0;
}
#pic {
width:270px;
height:195px;
background:green;
float:left;
margin:0 0 10px 0;
}
#rec {
width:270px;
height:195px;
background:red;
float:left;
margin:0 0 10px 0;
}
#sidebar-right {
width:270px;
height:835px;
background:red;
float:right;
margin:0 0 10px 0;
}
#picnews {
width:680px;
height:200px;
background:yellow;
float:left;
margin:0 0 10px 0;
}
#newslist {
width:680px;
height:625px;
background:pink;
float:left;
margin:0 0 10px 0;
}
#link {
width:960px;
height:110px;
background:orange;
float:left;
margin:0 0 10px 0;
}
#footer {
width:960px;
height:40px;
background:blue;
float:left;
}

一个中文都没有,却还要声明为 utf-8
BOM 头在 utf-8 声明之前,出点错也是正常的

一个中文都没有,却还要声明为 utf-8
BOM 头在 utf-8 声明之前,出点错也是正常的




大神,,我确实把 charset=utf-8" 去除了,就没有错误了,但是您说的BOM头问题,我的是无BOM头UTF8编码啊。。。。。