Nested CSS styles?

前端 未结 4 1032
情歌与酒
情歌与酒 2021-01-28 14:07

Is something like this possible?

.imgbox:hover{ .ui-resizable-se { /*some style */ } }

Or a conceptual equivalent? Basically, only when an elem

4条回答
  •  感情败类
    2021-01-28 14:53

    You can do this:

    .imgbox:hover .ui-resizable-se { /*some style */ }
    

    The same can be generated by LESS or SASS.

提交回复
热议问题