我有两个div:float:left.我z-index第一个div到上面,但它不工作.这是因为浮动元素没有定位?
<html> <style> #wrap{ background:#666; } #menu,#thumbs{ float:left; } #menu{ background:#06C; z-index:10; } #thumbs{ background:#0CF; margin-left:-20px; } </style> </head> <body> <div id="wrap"> <div id="menu"> <p>menu</p> </div> <div id="thumbs"> <p>thumbs</p> </div> </div> </body> </html>