修复导航栏CSS
我遇到滚动条未推到最右边的问题。我将导航类的边距设置为 0 并溢出:自动。 下面是codepen链接
I'm having a problem with the scroll bar not pushed to the right most. I set the margin of the nav class to 0 and overflow: auto.
Below is codepen link
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想隐藏滚动条,请使用:
或尝试使用 ::-webkit-scrollbar
if your tying to hide the scrollbar use:
or try it with ::-webkit-scrollbar
父级 div (.nav) 和列表的宽度存在差异。
尝试将
.nav ul
的宽度设置为300px。我希望这就是您想要实现的目标。如果没有,请分享更多详细信息。
There is a difference between width of the parent div (.nav) and the list.
Try to set the width of
.nav ul
to 300px.I hope this is what you wanted to achieve. If not, please share more details.
调整侧边栏的CSS以满足您的需要。
Tweaked the css of sidebar to match your need..