I\'m using Bootstrap 3 for a blog. In my custom CSS, I recently added
body { text-align: justify; ... }
I like the result on bigger scr
Yes, like this (where your breakpoint is set at 48em):
body{ text-align: left; } @media screen and (min-width: 48em){ body{ text-align: justify; } }
The second rule will override the first if the viewport width is greater than 48em.