Bootstrap - Removing padding or margin when screen size is smaller

后端 未结 12 1306
深忆病人
深忆病人 2020-12-07 18:31

EDITED: Maybe I should ask which selector sets up the side padding when the screen is reduced to below 480px width? I have been browsing bootstrap-responsi

12条回答
  •  孤城傲影
    2020-12-07 18:46

    Heres what I do for Bootstrap 3/4

    Use container-fluid instead of container.

    Add this to my CSS

    @media (min-width: 1400px) {
        .container-fluid{
            max-width: 1400px;
        }   
    }
    

    This removes margins below 1400px width screen

提交回复
热议问题