问答详情
源自:2-1 transition基础写法和经验总结

貌似不可以使用&:hover

di不可以使用&:hover

提问者:qq_慕丝2128187 2020-03-06 20:58

个回答

  • ____________C
    2020-03-06 23:28:18

    /* 没有配置sass是这样的,不过可以写成下面这种: */

    .box{

        width: 100px;

        height: 100px;

        background: rgb(31, 212, 61);

        

    }

    .demo-1{

        /* &:hover{

            width: 500px;

        } */

        transition: all 2s ease;

        /* width: 500px; */

    }

    .demo-1:hover{

        width: 900px;

        height: 400px;

        background: rgb(233, 53, 98);

        transform: rotate(45deg);

    }