Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何删除此页面上的滚动条?http://cs1.ucc.ie/~per1/
您可以使用:
body {overflow-x: hidden;}
或者
nav {box-sizing: border-box; }
因为您实际上将导航设置为 100% 并在两侧添加 10px 填充,从而为您提供滚动条。