Bootstrap 3: pull-right for col-lg only

前端 未结 13 2183
醉酒成梦
醉酒成梦 2020-11-29 20:00

New to bootstrap 3.... In my layout I have:

elements 1
13条回答
  •  我在风中等你
    2020-11-29 20:25

    Works fine too:

    /* small screen portrait */
    
    @media (max-width: 321px) {
    
      .pull-right { 
        float: none!important; 
      }
    
    }
    
    
    /* small screen lanscape */
    
    @media (max-width: 480px) {
    
      .pull-right {
        float: none!important; 
      }
    
    }
    

提交回复
热议问题