如何找到固定位置的资产净值;在中心?

时间:2019-06-05 07:03:44

标签: html css-position fixed

将导航器的位置分配给固定时,导航器向左浮动。 如何将其移回中心?

read_text_channels_

我想将导航栏固定在中间。 但是,当我将导航栏位置指定为固定时,它在左侧浮动。

以下是图片:enter image description here

2 个答案:

答案 0 :(得分:0)

尝试使用CSS的left和right属性。

nav {
  display: flex;
  justify-content: space-around;
  position: fixed;
  left: 0;
  right: 0;
}

参考:https://developer.mozilla.org/en-US/docs/Web/CSS/position#Fixed_positioning

答案 1 :(得分:0)

将宽度100%添加到导航 https://jsfiddle.net/ulric_469/1826szqm/1/

nav {
  display: flex;
  justify-content: space-around;
  position: fixed;
  align-items: center;
  width: 100%;
}