Created
March 30, 2012 14:51
-
-
Save 6ui11em/2252065 to your computer and use it in GitHub Desktop.
CSS: Bootstrap center nav-pills in a row
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
.nav-tabs > li, .nav-pills > li { | |
float:none; | |
display:inline-block; | |
*display:inline; /* ie7 fix */ | |
zoom:1; /* hasLayout ie7 trigger */ | |
} | |
.nav-tabs { | |
text-align:center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment