css position

来源:互联网 发布:向ncbi上传转录组数据 编辑:程序博客网 时间:2024/04/28 17:38
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
   #fixed{position:fixed;top:5em;right:0;}
</style>
</head>
<body>
<div id="wrapper" style="height:1000px;">
回到顶部了!!!!
</div>
<div id="fixed"><h2 onclick="window.scrollTo(0,0);">回到顶部</h2></div>
</body>
</html>