Skip to content

Instantly share code, notes, and snippets.

@lagden
Created September 24, 2012 18:21
Show Gist options
  • Save lagden/3777444 to your computer and use it in GitHub Desktop.
Save lagden/3777444 to your computer and use it in GitHub Desktop.
<div class="yeahh">
<ul class="nav">
<li>a</li>
<li>b</li>
<li>c</li>
<li>d</li>
<li>e</li>
</ul>
</div>
@import "compass";
.nav { list-style: none; margin-left: 0; }
.nav > li, .nav > li > a { display: inline-block; *display: inline; *zoom: 1; }
ul.nav{
height: 265px;
margin: 0;
padding: 0;
font-size: 0;
li{
background-color: blue;
min-width: 100px;
color: red;
font-size: 15px;
margin-right: 10px;
text-align: left;
&:last-child{
margin-right: 0;
}
}
}
.yeahh{
padding:10px;
background: cyan;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment