简单的CSS z-index示例不起作用

时间:2010-10-07 12:52:59

标签: html css

我正在尝试在z-index上创建一个带有2张图像的简单html:

<html>
    <head>
        <title>test</title>
        <style type="text/css">
            back {
                position: absolute;
                left: 0px;
                top:0px;
                z-index:0;
            }

            front {
                position: absolute;
                left: 0px;
                top:0px;
                z-index:1;
            }
        </style>
    </head>
    <body>
        <img id="front" src="loading.gif">
        <img id="back" src="plasma.jpg">
    </body>
<html>

但为什么z-index不起作用?

1 个答案:

答案 0 :(得分:7)

您忘了在CSS中的ID之前添加#

#back { ... }
#front { ... }