Created
August 21, 2012 12:04
-
-
Save ultim8k/3414933 to your computer and use it in GitHub Desktop.
responsive inline menu
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
/** | |
* responsive inline menu | |
*/ | |
body{ | |
padding:0; | |
margin:0; | |
} | |
nav { | |
width: 100%; | |
text-align: center; | |
} | |
nav ul { | |
box-sizing:border-box; | |
margin: auto; | |
display: block; | |
height: auto; | |
background-color: steelblue; | |
padding: 10px; | |
width: 100%; | |
} | |
nav li { | |
height: 40px; | |
width:70px; | |
line-height: 40px; | |
padding: 0 10px; | |
margin: 5px; | |
border: 1px solid black; | |
background-color: white; | |
display:inline-block; | |
} | |
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
<!-- content to be placed inside <body>…</body> --> | |
<nav> | |
<ul> | |
<li><a>Romeo</a></li> | |
<li><a>Oscar</a></li> | |
<li><a>November</a></li> | |
<li><a>Charlie</a></li> | |
<li><a>Tango</a></li> | |
<li><a>Tango</a></li> | |
<li><a>Lima</a></li> | |
<li><a>Alpha</a></li> | |
<li><a>Two</a></li> | |
<li><a>Two</a></li> | |
</ul> | |
</nav> |
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
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment