标签: html css internet-explorer
我在IE以外的所有浏览器上都有一个中心菜单。
到目前为止,我已尝试了多项内容,但在调整屏幕大小时,它们最终会破坏,菜单也需要在移动设备上保持居中。菜单使用position: fixed;
position: fixed;
margin: 0 auto;不起作用
margin: 0 auto;
top: 50%; left: 50%;
对我来说也不起作用,我怎样才能使菜单居中?
The website I am talking about.
答案 0 :(得分:1)
IE 11及以下版本对绝对/固定头寸的行为不同。
将width: 100%添加到导航栏对我来说很好。
width: 100%