Skip to content

Instantly share code, notes, and snippets.

@alimd
Created July 9, 2013 06:15
Show Gist options
  • Save alimd/5955085 to your computer and use it in GitHub Desktop.
Save alimd/5955085 to your computer and use it in GitHub Desktop.
.mainmenu {
list-style-type: none;
padding: 0;
}
.mainmenu li {
float: left;
margin-right: 2px;
}
.mainmenu li a{
display: block;
padding: 7px 15px;
background-color: #706;
color: #fff;
text-decoration: none;
font-weight: bold;
}
.mainmenu li:hover a {
background-color: #504;
}
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<menu class="mainmenu">
<li><a href="">About Us</a></li>
<li><a href="">Products</a></li>
<li><a href="">Services</a></li>
<li><a href="">Contact Us</a></li>
</menu>
</body>
</html>
@alimd
Copy link
Author

alimd commented Jul 9, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment