-
-
Save andreibabor/22360ae9cc665041ceb1171393932f8f to your computer and use it in GitHub Desktop.
CSS: Bootstrap center nav-pills in a row
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
.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