用 css 里的 position 做出的,这个效果原理是什么 ........求各位前辈帮帮忙~~~~
[local]1[/local]用dl dt dd 做导航 代码的一部分属性是这样的
dl {
float:left;
width:108px;
position:relative; /*下拉效果*/
}
dd {
background:url(../image/secondBgj.gif) repeat-y;
width:80px;
padding-left:10px;
/*下拉菜单效果*/
position:absolute;
z-index:1;
left:10px;
top:36px;}
我不明白的是为什么要在dl里设置position:relative;属性后还要在dd里设置 position:absolute;而且都不设置属性值(top left bottom right)
更不明白为什么是这个效果 他的原理是什么 为什么这么设置之后dd层叠加在图片之上而不是把图片挤走