关于 css 的 z-index 问题
<style type="text/css">
.test {margin-bottom:20px;margin-left:50px}
.test li {height:40px;width:100px;float:left;margin-left:-20px}
.test .a {background:red;z-index:1}
.test .b {background:green;z-index:3}
.test .c {background:black;z-index:2}
</style>
<ol class="test">
<li class="a"></li>
<li class="b"></li>
<li class="c"></li>
</ol>
按这代码 我想把绿色 放在 最上面
可是不行~
z-index 只能在定位里 好使吗?
答案:Z-index 仅能在定位元素上奏效(例如 position:absolute;)
其他:要想让index起作用,需要将其position设置为absolute或者是relative。
上一个:有谁能教我div+css啊?
下一个:HTML+CSS的问题