Created
July 9, 2013 06:15
-
-
Save alimd/5955085 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Live Preview