我需要帮助保持导航栏的位置

时间:2014-07-21 21:22:00

标签: html css

当我在firefox浏览器中放大或缩小时,我无法弄清楚如何让导航栏从左向右移动?

  • Slate bootswatch主题
  • 我的Website

<div class="navbar navbar-default" style=" width: 600px; position: absolute; left: 32.6%">

2 个答案:

答案 0 :(得分:0)

您好我认为您添加了一些内联样式

 style=" width: 600px; position: absolute; left: 32.6% " 

将此内联样式更改为

style=" width: 600px; margin : 0 auto " 

答案 1 :(得分:0)

将导航栏边距设置为0会自动将该元素在其容器中水平居中,并具有所需的宽度。

<div class="navbar navbar-default" style="width: 600px; margin: 0 auto">