1:background-position

加之前:
background: url("../images/nav-bg.png") repeat-y scroll top left #e3e5e7;
 background-position: initial initial;
 background-repeat: initial;

Css 知识点

加之后:

background: url("../images/nav-bg.png") repeat-y scroll top left #e3e5e7;

background-position: initial initial;

background-repeat: initial initial;

Css 知识点

 

2:阴影图片(结合background和padding-bottom)

加之前:

background: url("../images/shadow-bottom.png") repeat-x scroll bottom left transparent;
position: relative;
z-index: 0;

Css 知识点

加之后:

background: url("../images/shadow-bottom.png") repeat-x scroll bottom left transparent;
position: relative;
z-index: 0;
padding-bottom: 14px;

 Css 知识点

 

2:z-index(dom层叠)

加之前:

z-index: 30;

Css 知识点

加之后:

z-index: 0;

Css 知识点

相关文章: