我需要在doctype
我的 html 网页中添加一个,因为如果我这样做,IE 只会正确格式化它。但是当我添加它时,页面上的一些图像没有加载。图像嵌入了 CSS 背景属性,并以div
s 的形式显示在屏幕上。它不会在所有常见的浏览器中加载图像。
可能是什么问题呢?我真的需要doctype
up。
CSS:
.blue {
position: absolute;
background: url(blue.png) no-repeat center center;
top: 163;
width: 228;
height: 434;
}
.green {
position: absolute;
background: url(green.png) no-repeat center center;
top: 120;
width: 266;
height: 209;
}
.orange {
position: absolute;
background: url(orange.png) no-repeat center center;
top: 183;
width: 165;
height: 291;
}
HTML:
<div class="blue"> </div>
<div class="green"> </div>
<div class="orange"> </div>
顶部的文档类型:
<!DOCTYPE html>