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

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

I have this HTML code

<
7条回答
  •  执笔经年
    2021-02-03 19:47

    You can add div with .visible-xs which only display on xtra small screens and add your custom class margin, for example:

    with custom css margins:

    .mobile-margin { margin-top: 0px; }
    

    and the margin will display only for xs screen.

提交回复
热议问题