让元素div消失在视野中

作者: 歪歪1993 | 来源:发表于2020-04-06 14:49 被阅读0次
    div {
            width: 100px;
            height: 100px;
            background: seagreen;
            color: powderblue;
    
            /* 第一种: 定位+方位*/
            /* position: absolute; */
            /* position: relative; */
            /* position: fixed; */
            /* top: -9999px; */
            /* bottom: -9999px; */
            /* left: -9999px; */
            /* right: -9999px; */
    
            /*  第二种
            display: none; */
    
            /* 第三种 */
            /* visibility: hidden; */
    
            /* 第四种 */
            /* margin-top: -9999px; */
            /* margin-left: -9999px; */
    
    
            /* 第五种 */
            /* opacity: 0; */
    
        }

    相关文章

      网友评论

        本文标题:让元素div消失在视野中

        本文链接:https://www.haomeiwen.com/subject/mmhbphtx.html