2

当我放置以下 css 时,背景图像不会出现在 ie8 和 ie7 中。

#bottom-thumb2{     
    width: 212px;
    height:300px;
    /*margin:5px 5px 5px 5px;*/
    padding:7px;
    width:23%;
    border-right:2px #cecece solid;
    background: url(../images/user912_modules_bg.png)repeat-y scroll right center rgb(255, 255, 255) ;
    font-size: 11px;
    float:left;
    overflow:auto;
}
4

2 回答 2

2

您在这一行缺少空格,url(../images/user912_modules_bg.png)repeat-y而不是url(../images/user912_modules_bg.png) repeat-y.


试试这个:

background: url(../images/user912_modules_bg.png) repeat-y scroll right center rgb(255, 255, 255) ;

或者

为避免混淆,请分别声明它们。像这样的东西:

background-image: url(../images/user912_modules_bg.png);
background-repeat: repeat-y;
background-attachment: scroll;
background-position: right center;
background-color: rgb(255, 255, 255) ;
于 2013-03-05T04:24:06.397 回答
0

你应该使用什么宽度?图片的宽度是多少?212 像素还是 23%?您当前正在定义/使用两者...

于 2013-03-05T08:34:56.137 回答