一:position:fixed
锁定位置(相对于浏览器的位置),例如有些网站的右下角弹窗
例如:
<head> <title>网页标题</title> <style type="text/css"> #a { border:5px solid blue; width:100px; heigth:100px; margin:10px; background-color:red; left:30px; bottom:20px; position:fixed; } </style> </head> <body> <div id="a">练习</div> </body>
时间: 2024-12-29 13:01:20