Change text-align responsively (with Bootstrap 3)?

后端 未结 9 2204
心在旅途
心在旅途 2021-01-30 09:54

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

9条回答
  •  深忆病人
    2021-01-30 10:40

    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.

提交回复
热议问题