通过css在JSP中插入JPG图像

时间:2014-05-20 14:05:07

标签: html css jsp

我有JSP页面,我希望以jpg文件的形式添加徽标。我将jpg文件放在eclipse中WebContent文件夹中的文件夹中。但是当我运行fllowing代码时,图像没有被加载。

<style type="text/css">
body
{
background: url("/images/bg-logo.jpg")top right no-repeat; 
}
</style>

有人能说出这段代码中的错误吗。

1 个答案:

答案 0 :(得分:0)

试试这个:

<style type="text/css">
body
{
background: url("images/bg-logo.jpg")top right no-repeat; 
}
</style>