I\'m building a site in Bootstrap 3. Is there anyway to make a element use the class pull-left on smaller devices and use pull-right on larger ones?
Something like:
You can use CSS Media Queries
basic usage will be like this; if you want to float left below devices of width 500px, then
@media (max-width: 500px) { .your_class { float: left; } } @media (min-width: 501px) { .your_class { float: right; } }