<html>
<head>
<meta charset="utf-8">
<title>網頁上的右下角布局實例</title>
<meta http-equiv="Content-Language" content="zh-CN" />
<style type="text/css">
* {margin:0;padding:0;}
.rigdown {position:fixed;bottom:0;right:0;_position:absolute;width:300px;height:250px;border:2px solid green;background:#eeeeee;padding:10px;}
</style>
</head>
<body>
<div>http://www.dnzg.cn/</div>
<div class="rigdown">這裡是右下角中要顯示的內容哦</div>
</body>
</html>