2014-04-21 82 views
0

這是div結構:爲什麼一個div不可見?

<div class=" wrap clear"> 
    <div class="block pink float"></div> 
    <div class="block blue float"></div> 
    <div class="block orange float"></div> 
    <div class="block green see"></div> 
</div> 

fiddle here

我所做的就是加入了一個名爲see類給z-index的1000綠色框。但是我仍然無法看到盒子。我想看看這個盒子,但是沒有給它一個剩餘的位置。 ?

+0

也'z-index'屬性不會工作,因爲元素位置未定義 –

回答

6

一下添加到.block

position:relative; 

z-index只適用於非static元素。

DEMO

+0

這就是我正在尋找 – aelor

0

它的存在,才使DIV又回到了左側和後面的div的顯示。你需要添加「浮動」到它,所以它會自動將DIV放在前一個元素的左側。