Bootstrap 3 Apply CSS on Mobile View Only

前端 未结 3 1215
执笔经年
执笔经年 2020-12-24 11:59

I\' am using Bootstrap 3, In the mobile view I would like to apply some CSS to fix up some bugs on mobile view. I have looked to documentations and Google it. I\' am can\'t

3条回答
  •  伪装坚强ぢ
    2020-12-24 12:12

    Just use the appropriate media queries in your CSS, eg

    @media (max-width: 767px) {
        /* CSS goes here */
    }
    

    Bootstrap defines the following widths

    • Extra small devices (phones, less than 768px)
    • Small devices (tablets, 768px and up)
    • Medium devices (desktops, 992px and up)
    • Large devices (large desktops, 1200px and up)

    See http://css-tricks.com/css-media-queries/ for some more information on media queries.

提交回复
热议问题