【发布时间】:2017-04-07 22:58:17
【问题描述】:
从这个布局开始: http://codepen.io/RebelOne/pen/wodbpR
.navbar {
display: flex;
justify-content: space-between;
当我将 position:fixed 添加到导航栏时,它会向下折叠并且不会填充包装器的宽度。有谁知道如何解决这一问题? http://codepen.io/RebelOne/pen/bBWyLZ?editors=1100
.navbar {
display: flex;
justify-content: space-between;
background-color: yellow;
position: fixed;
top: 0;
z-index: 99;
}
【问题讨论】:
-
display:flex 和 position 不匹配...您想要修复导航栏吗?
-
对你有帮助吗?......