2014-04-23 91 views

回答

1

你會想給他們position: fixed。如果你希望他們被垂直居中,你可以做這樣的事情*:

.nav-arrow { 
    position: fixed; 
    top: 0; 
    bottom: 0; 
    margin: auto; 
} 

看到這個codepen demo

*您必須確保給他們指定的高度

+0

謝謝。工作...做了一個小調整。添加頂部:50%;將其垂直移動到中間位置,右側:0;右箭頭右鍵。 –

+0

嗨@JoshRutherford它不能在OSX 10.9上的火狐工作:( –

+0

@DeAn你是哪個版本的Firefox?這個演示http://codepen.io/the_ruther4d/full/2b94b​​97aa38713c00b1a2c89883b71e0/似乎是在爲我工作firefox 28.0 osx 10.9。 –

相關問題