答案 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%;
}