Skip to content

Instantly share code, notes, and snippets.

@kkeeth
Last active May 25, 2016 03:02
Show Gist options
  • Save kkeeth/931a1ea3d2c1ea61604ff964cae27f77 to your computer and use it in GitHub Desktop.
Save kkeeth/931a1ea3d2c1ea61604ff964cae27f77 to your computer and use it in GitHub Desktop.
スクロールしてもヘッダーの位置を固定するスニペット
* {margin: 0; padding: 0;}
a {text-decoration: none;}
.fixed {
position: fixed;
top: 0;
height: 70px;
z-index: 1;
}
/* Navigation Settings */
nav {
width: 100%;
height: 70px;
background: #fff;
}
nav li {
display: inline-block;
padding: 24px 10px;
}
nav li a {
color: #757575;
text-transform: uppercase;
}
/* Screens Settings */
section {
height: 100vh;
}
#screen1 {
background: #43b29d;
}
#screen2 {
background: #efc94d;
}
#screen3 {
background: #e1793d;
}
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>js tools select</title>
<link rel="stylesheet" href="./app.css">
</head>
<body>
<div id="container">
<nav class="fixed">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<section id="screen1"></section>
<section id="screen2"></section>
<section id="screen3"></section>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment