【发布时间】:2019-05-29 06:00:19
【问题描述】:
我正在使用 styled-components 并希望定位 Text 的第一个孩子,但我无法这样做。
const Text = styled.p`
font-size: 12px;
&:first-child {
margin-bottom: 20px;
}
`;
... component
return(
<div>
<p>I am just regular text</p>
<p>Me too</p>
<Text>Hello Joe</Text> // this should have the margin bottom
<Text>Goodbye</Text >
</div>
)
【问题讨论】:
标签: css reactjs sass styled-components