我正在尝试将框固定在页面的右下边框中,并且不会随着页面向下滚动而移动.但它不适合我,为什么不知道.这是我的代码:
<html> <head> <style type="text/css"> .tooltip { width: 200px; position: fixed; top:auto; bottom:0px; right:0px; left:auto; } </style> </head> <body> <div class="tooltip"> <div class="tooltip_top">1</div> <div class="tooltip_con">2</div> <div class="tooltip_bot">3</div> </div> </body> </html>
解决方法
它适用于FF和Chrome ..
旧版本的IE不支持位置:正确修复..不确定最新版本..
还要确保定义了doctype ..