Bootstrap 3 breakpoints and media queries

后端 未结 9 1409
伪装坚强ぢ
伪装坚强ぢ 2020-11-27 09:08

On the Bootstrap 3 media queries documentation it says:

We use the following media queries in our Less files to create the key breakpoints in our grid

9条回答
  •  佛祖请我去吃肉
    2020-11-27 09:44

    @media screen and (max-width: 767px) {
    
    }
    
    @media screen and (min-width: 768px) and (max-width: 991px){
    
    
    }
    
    @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape){
    
    
    }
    
    @media screen and (min-width: 992px) {
    
    
    
    }
    

提交回复
热议问题