Created
November 7, 2012 19:48
-
-
Save lukaswilkeer/4033932 to your computer and use it in GitHub Desktop.
Menu CSS (Sem Dropdown).
This file contains 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> | |
<title>Your Awesome Webpage</title> | |
<style> | |
#menu ul { | |
padding:0px; | |
margin:0px; | |
float: left; | |
width: 100%; | |
background-color:#EDEDED; | |
list-style:none; | |
} | |
#menu ul li { display: inline; } | |
#menu ul li a { | |
padding: 2px 10px; | |
float:left; | |
/* visual do link */ | |
background-color:#EDEDED; | |
color: #333; | |
text-decoration: none; | |
border-bottom:3px solid #EDEDED; | |
} | |
#menu ul li a:hover { | |
background-color:#D6D6D6; | |
color: #6D6D6D; | |
border-bottom:3px solid #EA0000; | |
} | |
</style> | |
</head> | |
<body> | |
<nav id="menu"> | |
<ul> | |
<li><a href="#">Home</a></li> | |
<li><a href="#">Produtos</a></li> | |
<li><a href="#">Missão</a></li> | |
<li><a href="#">Links</a></li> | |
<li><a href="#">Contato</a></li> | |
</ul> | |
</nav> | |
</body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment