Skip to content

Instantly share code, notes, and snippets.

@cbmgit
Created June 3, 2020 10:28
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 cbmgit/a0e4d2495cf24e44c6c8e074ac701361 to your computer and use it in GitHub Desktop.
Save cbmgit/a0e4d2495cf24e44c6c8e074ac701361 to your computer and use it in GitHub Desktop.
CSS Example
.menu_simple {
width: 100%;
background-color: #005555;
}
.menu_simple ul {
margin: 0;
padding: 0;
float: left;
}
.menu_simple ul li {
display: inline;
}
.menu_simple ul li a {
float: left;
text-decoration: none;
color: white;
padding: 10.5px 11px;
background-color: #005555;
}
.menu_simple ul li a:visited {
color: white;
}
.menu_simple ul li a:hover, .menu_simple ul li .current {
color: white;
background-color: #5FD367;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment