天天看点

关于css background_image和background

这是我的css文件

<style type="text/css">
.b{background-image:url(../PIC/.jpg) }
.p{background:url(../PIC/.jpg)  repeat}
.c{color:blue}
.d{color:red}
.e{color:green}
</style>
           

这是jsp文件片段,我想从外部CSS样式表中显示body的背景

<body  class="p">
<div class="c">name</div>
<div class="e" >pid</div>
</body>
           

但是用background就可以显示,而用background-image就不可以

查了一些资料:

说background是总属性,包括background-image,background-color,

background-repeat(平铺)等。

但是,还是没有弄明白为什么background-image 不能显示图片