您右下角有份、、、

position:位置使用

position:fixed固定位置


用途:例如右下角弹框

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>position:fixed</title>
<style type="text/css">
#please{
200px;
height:200px;
position:fixed;
background:#FFFF00;
border:#000000 solid 2px;
bottom:0;
right:0;
position:
}

</style>
</head>
<body>

<div id="please">请问
</div>
</body>

原文地址:https://www.cnblogs.com/xiandong/p/7582044.html