# margin的一些問題

子元素作為父元素的`第一個元素`,給它margin-top會存在問題
如何解決:
~~~
//1.給父元素
overflow: hidden;
//2.給父元素設置偽元素
parent{
content:"";
display: table;
}
~~~