Skip to content

Instantly share code, notes, and snippets.

@MOOOWOOO
Created December 7, 2016 05:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MOOOWOOO/4ad7e4622453786fda1b199be0b89216 to your computer and use it in GitHub Desktop.
Save MOOOWOOO/4ad7e4622453786fda1b199be0b89216 to your computer and use it in GitHub Desktop.
titlebar浮动,下滑时保持在顶部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
#topmenu
{top:0;
width:100%;
position:fixed;
padding:10px;
text-align:center;
font-weight:bold;
background:#ED9F30}
</style>
</head>
<body>
<div id="topmenu">
title
</div>
<div style="height:50px">
</div>
<div style="height:5000px">
content
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment