Bootstrap. How to add bottom margin for mobile screen only?

前端 未结 7 1424
臣服心动
臣服心动 2021-02-03 19:15

I have this HTML code

<
7条回答
  •  清歌不尽
    2021-02-03 19:57

    Bootstrap doesn't provide something for managing margins or paddings, but you could do something like this: jsFiddle link. Where you set the margin to a div with visible-xs class.

    123123

    asdasdadasd

    with css:

    .xs-margin {
        margin-bottom: 100px;
    }
    

提交回复
热议问题