我有一个 html 文档,我想将图像作为背景。对于下一个示例,一切都很好:
<html><head></head><body><div id="principal"></div></body></html>
CSS:
#principal
{
background: url(../Img/org/world.png) no-repeat;
width:100%;
height:100%;
background-size: 100% 100%;
}
但是如果我将 html 文件重写为:
<!DOCTYPE html><html><head></head><body><div id="principal"></div></body></html>
不再显示来自 css 的图像( background: url(../Img/org/world.png) no-repeat; )。为什么?