我有JSP页面,我希望以jpg文件的形式添加徽标。我将jpg文件放在eclipse中WebContent文件夹中的文件夹中。但是当我运行fllowing代码时,图像没有被加载。
<style type="text/css">
body
{
background: url("/images/bg-logo.jpg")top right no-repeat;
}
</style>
有人能说出这段代码中的错误吗。
答案 0 :(得分:0)
试试这个:
<style type="text/css">
body
{
background: url("images/bg-logo.jpg")top right no-repeat;
}
</style>