让元素div消失在视野中

阅读 90

2021-09-28

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; */

    }

精彩评论(0)

0 0 举报