react styles
叶江怀 2019-06-10 cssreact
# react中styles使用方法
import styles from './homeV2.scss';
1
当在react用名称引入样式的时候我们在文件中使用的方法为:
<div className={styles.mingcheng} />
1
当我们需要引入两个以上的类名时,首先需要引入:
import classnames from 'classnames';
1
然后在文档中使用的方法为:
<div className={classnames("leiming1","leiming2")}/>
1
或者不引入react自带的classnames
使用es6方法:
<div className={`${styles.mingcheng} "mingcheng2"`}/>
1