一、方案选择
React的css in js有很多种,这里推荐按照start的数量进行选择。如果有一些特别合自己心意的除外。以下是一个搜集方案的网址
二、使用示例
styled-components
- 安装
yarn add styled-components
- 导入
import styled from 'styled-components'
- 定义标签
const Div1 = styled.div`
width: 100px;
height: 100px;
border: 1px soild red;
`
- 直接使用
return (
<div>
我是一个styled标签
<Div1 />
</div>
)
emotion
- 安装
yarn add @emotion/core
- 导入
/** @jsx jsx */
import {jsx} from "@emotion/core"
- 直接在jsx中使用css属性使用
return (
<div css={{ border: 1px soild red, width: 100, height: 100 }}>我是emotion方案</div>
)