Why does this CSS margin-top style not work?

前端 未结 12 1962
醉梦人生
醉梦人生 2020-11-21 04:54

I try to add margin values on a div inside another div. All works fine except the top value, it seems to be ignored. But why?

What I expected:
<

12条回答
  •  甜味超标
    2020-11-21 05:30

    Have you tried !important before all, it will force everything:

    margin:50px 50px 50px 50px !important;
    

提交回复
热议问题