CSS背景与)的名称?

时间:2010-01-25 17:25:13

标签: html css

我想显示一个带有背景图像的div,其名称如下:“image_(1)_125x192.jpg”。它不显示,可能是由于“)”。有没有办法解决这个问题而不重命名图像?

#div {
    background-image: url(image_(1)_125x192.jpg);
    height: 192px;
    width: 125px;
}

谢谢!

2 个答案:

答案 0 :(得分:7)

使用引号

background-image: url("image_(1)_125x192.jpg");

w3参考:http://www.w3.org/TR/CSS2/colors.html#propdef-background-image

答案 1 :(得分:5)

#div {
    background-image: url('image_(1)_125x192.jpg');
    height: 192px;
    width: 125px;
}

注意引用