欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

DIV背景图片定位问题_html/css_WEB-ITnose

程序员文章站 2024-01-04 15:54:10
...

正确写法

.custom-topNavigation_shadow {

width: 1024px;

height: 115px;

background: url('Images/document-block-main.png') repeat-x 0 -380px;

}

IE8或以下不支持的写法,IE9或以上支持,有误的写法

.custom-topNavigation_shadow {

width: 1024px;

height: 115px;

background: url('Images/document-block-main.png') repeat-x top -380px left 0;

}

上一篇:

下一篇: