1
在下面....IOS絕對位置「未設置」不工作
div.foobar { position: absolute; top: 0; left: 0}
@media screen and (max-width:400px) { div.foobar { top: unset; bottom: 0;} }
...在大多數瀏覽器導致DIV從頂部移到底部在較小的屏幕上包含div(position: relative
)。在IOS中它沒有。唯一的解決方法似乎是top: 95%
,但這不可預測。
是否有此問題的任何解決方法嗎?
'top:auto'或將第一條規則放在媒體查詢內部,用於'min-width:401px' – fcalderan
spot!謝謝,所以':auto'是取消絕對定位的最佳做法。 –