DIV背景图片定位问题_html/css_WEB-ITnose
程序员文章站
2022-06-08 19:32:34
...
正确写法
.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;
}
推荐阅读
-
div嵌套时,背景图片不显示问题的解决方法
-
HTML中由于DIV(块元素)浮动,导致的父元素高度塌陷问题的解决方案
-
HTML连载79-背景图片定位区域属性、背景颜色
-
Codeforces Round #156 (Div. 2)-A. Greg's Workout_html/css_WEB-ITnose
-
background-size 设置背景图片的大小_html/css_WEB-ITnose
-
Codeforces Round #107 (Div. 2)-A. Soft Drinking_html/css_WEB-ITnose
-
Codeforces Round #191 (Div. 2)-A. Flipping Game_html/css_WEB-ITnose
-
前端基础??CSS+DIV布局_html/css_WEB-ITnose
-
DIV+CSS在不同浏览器中的表现_html/css_WEB-ITnose
-
[转]CSS浏览器兼容问题总结_html/css_WEB-ITnose