position:位置使用
position:fixed固定位置
用途:例如右下角弹框
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>position:fixed</title>
<style type="text/css">
#please{
width:200px;
height:200px;
position:fixed;
background:#FFFF00;
border:#000000 solid 2px;
bottom:0;
right:0;
position:
}
</style>
</head>
<body>
<div id="please">请问
</div>
</body>
时间: 2024-09-26 23:03:42