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

どの幅を使用する必要がありますか? 画像の幅は?212px または 23%? 現在、両方を定義/使用しています...

于 2013-03-05T08:34:56.137 に答える