React中使用外部样式的3种方式(小结)
一、关于css-in-js的认识 1、css-in-js是一种使用 js 编写 css 样式的 css 处理方案。它的实现方案有很多,比如styled-components、polished、glamorous(paypal 开源的,不再维护)、radium、emotion等等。 2、其中最成熟的便是styled-components和emotion。它们真正意义上实现了组件化style,可以说是专门为 react 打造的。 二、styled-components 简介 styled-components是 css-in-js 主流的实现方案,同时也是组件化style的主流实现方案。 下面
用户评论