2014-03-05 63 views
-2

我的下拉菜單出現問題。每當我點擊下拉菜單,列表被幹擾我的主要DIV的數據是這樣的:下拉菜單幹擾我的數據

我的屏幕快照,CSS屬性擺脫我從這個

Dropdown Menu Screenshot

,你可以在上面的圖片中看到,它正在推低我的數據。我是否需要將任何樣式添加到我的主div或我的下拉列表中?

我知道這是一個小問題,但我卡在這裏。

+1

你嘗試'位置:absolute'?告訴我們你的代碼 – greener

回答

3

您需要爲您的下拉菜單使用absolute positioning

nav { 
    position:absolute; 
    top:100px; //how far from the top the menu is 
    right:25px; //how far from the right the menu is 
} 

您可以閱讀文檔並使用值進行操作以獲得您喜歡的位置。

0

嘗試position:absolute

可能鐵鍋

否則顯示一些代碼

+0

thx隊友工作 – user1934044