【发布时间】:2021-12-22 17:50:02
【问题描述】:
我在react 中使用Emotion。
我的元素:
<div class="parent">
<span class="one">1</span>
<div class="two">2</div>
<span class="three">3</span>
<div class="four">4</div>
</div>
.parent {
& > *:not(:first-child) {
color: red;
}
}
来自Emotion的错误:
The pseudo class ":first-child" is potentially unsafe when doing server-side rendering. Try changing it to ":first-of-type".
但是,很明显,即使将 :first-child 替换为 :first-of-type 也不会达到我想要的结果
【问题讨论】:
标签: reactjs typescript emotion