对于styled-components
React,是否有任何替代方案
.btn:hover:not(.inactive)>.btn-top,
.btn.active:not(.inactive)>.btn-top {
z-index: 2;
/* transform here */
}
.btn:hover:not(.inactive)>.btn-bottom,
.btn.active:not(.inactive)>.btn-bottom {
z-index: 1;
/* transform here */
}
(使用嵌套条件选择器来确保所有动画在同一个 DOM,但不同的 z-index 级别正确运行/完成)?
(对不起标题长度。没有代表创建样式组件标签。)