position_fixed固定在某一个页面上
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .pg_head{ height: 60px; background-color: black; color: white; position: fixed; /*position头部固定*/ top :0; left:0; right:0; } .pg_body{ background-color:#dddddd; height: 5000px; margin-top: 20px; } </style> </head> <body> <!--position fixed--> <div class="pg_head"> 头部</div> <div class="pg_body">内容</div> </body> </html>