在React样式的组件上重置格式

时间:2018-12-05 13:52:08

标签: javascript reactjs frontend jsx styled-components

我在做

const Hint = styled.div`
  margin: 5px 0 0 0;
  color: grey;
  span {
    color: black;
  }
`

然后,在render()中执行以下操作:

<Hint>
  Hint: Use <span>TEXT TO RESET FORMATTING</span> to send a message 
</Hint>

有没有更优雅的方法来重置样式化组件内某些文本的格式?

0 个答案:

没有答案