Created
September 28, 2012 09:56
-
-
Save fgarcia/3798946 to your computer and use it in GitHub Desktop.
Center block and do not wrap text around (sass)
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
@media only screen and (max-width: 450px) | |
.centerblock-when-small | |
float: none !important | |
margin-left: auto !important | |
margin-right: auto !important | |
text-align: center | |
display: table |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using display: table is usually better when the width is not known (except for IE6)