Skip to content

Instantly share code, notes, and snippets.

@jdzcn
Created February 23, 2021 12:48
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 jdzcn/8eb9d3bb061ab2ec9ed782023e0b2d99 to your computer and use it in GitHub Desktop.
Save jdzcn/8eb9d3bb061ab2ec9ed782023e0b2d99 to your computer and use it in GitHub Desktop.
css:topnav
/* 导航条 */
nav {
overflow: hidden;
background-color: #333;
}
/* 导航条链接 */
nav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* 链接颜色修改 */
nav a:hover {
background-color: #ddd;
color: black;
}
/* 响应式布局 -屏幕尺寸小于 400px 时,导航等布局改为上下布局 */
@media screen and (max-width: 400px) {
nav a {
float: none;
width: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment