margin无效(子对象)

#father { width: 200px; height: 200px; background-color: #000; /** * 在父对象设置overflow */ overflow:hidden; }#son { /** * 或在子对象设置float */ float:left; width: 100px; height: 100px; margin: 50px 0px 0px 50px; background-color: #eee; }

    推荐阅读