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

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

I have this HTML code

<
7条回答
  •  误落风尘
    2021-02-03 20:05

    I have this issue a lot so I created a custom class called "mobile-space" which I add to divs that need a margin-top only in mobile:

    @media screen and (max-width: 767px) {
    .mobile-space {margin-top:10px;}
    }
    

    Personally, I'd go this route WITH a media query rather than adding unnecessary html markup like divs.

提交回复
热议问题