# margin的一些问题

子元素作为父元素的`第一个元素`,给它margin-top会存在问题
如何解决:
~~~
//1.给父元素
overflow: hidden;
//2.给父元素设置伪元素
parent{
content:"";
display: table;
}
~~~
