Created
September 22, 2015 11:29
-
-
Save alptugan/47d6be54102660e9a192 to your computer and use it in GitHub Desktop.
CSS Snippets
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
HTML CODE | |
<div id="navcontainer"> | |
<ul> | |
<li><a href="#">Milk</a></li> | |
<li><a href="#">Eggs</a></li> | |
<li><a href="#">Cheese</a></li> | |
<li><a href="#">Vegetables</a></li> | |
<li><a href="#">Fruit</a></li> | |
</ul> | |
</div> | |
CSS CODE | |
#navcontainer ul | |
{ | |
margin: 0; | |
padding: 0; | |
list-style-type: none; | |
text-align: center; | |
} | |
#navcontainer ul li { display: inline; } | |
#navcontainer ul li a | |
{ | |
text-decoration: none; | |
padding: .2em 1em; | |
color: #fff; | |
background-color: #036; | |
} | |
#navcontainer ul li a:hover | |
{ | |
color: #fff; | |
background-color: #369; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment