请问有人能指出我如何将菜单栏附加到IE窗口的右侧吗?
答案 0 :(得分:1)
CSS问题真的。 JF的回答是正确的:位置:修正它会在你滚动时跟随。
尝试将其放入html文件中以获得更直观的方法
<html>
<head>
</head>
<body style="height:2000px;">
<div style="position:fixed; right:0px; width:100px; height:200px; top:100px; background-color:blue;"> </div>
</body>
</html>