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.
我正在寻找一种情况,其中一些导航按钮粘在浏览器窗口的边缘,我假设一些 css 和 javascript,我已经很长时间没有进行任何编码了,我想知道是否有人可以指出我正确的方向。
http://www.flickr.com/photos/66009984@N00/6824355131/
根据您是否希望它们随页面滚动,使按钮位置为绝对或静态。
.buttonLeft { position: absolute; left: 0 } .buttonRight { position: absolute; right: 0 }
如果您希望它们在另一个 div 中,则该父 div 需要将其位置设置为相对。
.parentContainer { position: relative }