2012-05-24 52 views

回答

1

這是因爲你有另一個div(phar_panel)在導航之上。

您可以通過設置修復:

#m_box { 
    /* rules you already have */ 
    position: relative; 
} 

#phar_panel { 
    /* rules you already have */ 
    width: 230px; 
    height:31px; 
    right:30px; 
    position: absolute; 
} 
#phar_panel img { 
    /* rules you already have */ 
    left: 230px; 
    position: absolute; 
} 

另外,要小心,你必須在你的頁面相同的ID(導航)一個以上的元素!

+0

非常感謝你!我自己和另一位開發者現在一直在撞牆。 – tigergrad2002

相關問題