1. 首页
  2. 数据库
  3. 其它
  4. react中使用css的7中方式(最全总结)

react中使用css的7中方式(最全总结)

上传者: 2021-01-16 16:47:33上传 PDF文件 54.63KB 热度 3次
第一种: 在组件中直接使用style 不需要组件从外部引入css文件,直接在组件中书写。 import React, { Component } from "react"; const div1 = { width: "300px", margin: "30px auto", backgroundColor: "#44014C", //驼峰法 minHeight: "200px", boxSizing: "border-box" }; class Test extends Component { constructor(props, context) { super(pro
用户评论