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

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

I have this HTML code

<
相关标签:
7条回答
  • 2021-02-03 20:08

    If you are using Bootstrap 4, you can do it with spacing utilities:

     <div class="mb-4 mb-md-0"></div>
    

    This says:

    mb-4: use a bottom margin size of 4 for all screens (xs and up)

    mb-md-0: use a bottom margin size of 0 for medium (md) screens and up

    0 讨论(0)
提交回复
热议问题