Skip to content

Instantly share code, notes, and snippets.

@alehano
Last active August 29, 2015 14:17
Show Gist options
  • Save alehano/434e5450f45fba08856b to your computer and use it in GitHub Desktop.
Save alehano/434e5450f45fba08856b to your computer and use it in GitHub Desktop.
Bootstrap align responsive
/*
* Responsive text aligning
* http://ohryan.ca/2014/08/14/set-responsive-text-alignment-bootstrap-3/
*/
.text-xs-left { text-align: left; }
.text-xs-right { text-align: right; }
.text-xs-center { text-align: center; }
.text-xs-justify { text-align: justify; }
@media (min-width: @screen-sm-min) {
.text-sm-left { text-align: left; }
.text-sm-right { text-align: right; }
.text-sm-center { text-align: center; }
.text-sm-justify { text-align: justify; }
}
@media (min-width: @screen-md-min) {
.text-md-left { text-align: left; }
.text-md-right { text-align: right; }
.text-md-center { text-align: center; }
.text-md-justify { text-align: justify; }
}
@media (min-width: @screen-lg-min) {
.text-lg-left { text-align: left; }
.text-lg-right { text-align: right; }
.text-lg-center { text-align: center; }
.text-lg-justify { text-align: justify; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment