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

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

I have this HTML code

<
7条回答
  •  甜味超标
    2021-02-03 20:05

    Here you go:

    @media (max-width: 480px) {
        .vcenter img {
            margin-bottom: 10px;
        }
    }
    

    Assuming vcenter is the common div wrapping those images.

提交回复
热议问题