让一个div消失
1.position:absolute/relative/fixed + 方位 top/bottom/left/right: -9999px
2.display:none 此元素不会被显示。
3.visibility:hidden 元素是不可见的。
4.width:0 + overflow:hidden 内容会被修剪,并且其余内容是不可见的
height:0 + overflow:hidden
5.margin-top/bottom/left/right:-9999px; 移除界面
6.background-color:transparent 把背景色设置为透明
7.opacity:0 把背景色设置为透明的第二种方法
8.transform: translateX(-9999px)/translateY(-9999px)/translate(-9999px,-9999px)平移出去
9.transform: scale(0) 缩放