2010-10-07 50 views
1

我試圖做一個簡單的HTML與z-index的上述其他2個圖像之一:簡單的CSS的z-index例如不工作

<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的不工作?

回答

7

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

#back { ... } 
#front { ... } 
+0

+1聽起來正確! - 你太快了:) – 2010-10-07 12:55:24