1. Inline stylesAdvantages: This method is relatively simple and clear, adding style attributes to the tag. Disadvantages: This method can cause the project structure to be bloated and cause CSS naming conflicts. import React, { Component } from 'react' import PropTypes from 'prop-types' export default class index extends Component { static propTypes = { title: PropTypes.string } render() { const h1Style={textAlign:'center',marginBottom:'20px',lineHeight:'35px', height:'30px'} const {title} = this.props return ( <div> <h1 style={h1Style}>{title}</h1> <hr/> </div> ) } } 2. Use import methodAdvantages: This method is more flexible to use, similar to the external introduction in CSS Disadvantages: Because the react style is global by default, it is likely to cause style conflicts Usage: Create a new css file, set the class name through the className attribute in the jsx syntax, and use the class name in css. This method can use a ternary expression to select the class name by defining a variable. import React, { Component } from 'react' import "./index.css" export default class index extends Component { state={ flag:true } changeColor=()=>{ this.setState((state, props)=>{ return { flag:!state.flag } }) } render() { const {flag}=this.state return ( <div> <h1 className={flag?'blueColor':'redColor'}>Don't wait until your hair turns grey</h1> <button onClick={this.changeColor} className="btnStyle">Click to change font color</button> </div> ) } } .blueColor{ color: blue; } .redColor{ color: red; } .btnStyle{ width: 260px; height: 50px; background-color: aqua; color: #fff; border:none; font-size: 28px; border-radius: 10px; } 3.css module exportAdvantages: No naming conflicts, styles are only valid locally Disadvantages: Too cumbersome, modules need to be imported and exported every time, which is equivalent to treating all CSS class names as attributes of an object. When the object attribute is needed, the class name is called by calling the object attribute. The way to resolve CSS conflicts is to add prefixes to different class names, similar to setting module for style in Vue. use:
import React,{FC,useState} from "react" import Cmittem from "@/components1/cmittem" import cssObj from "./cmtlist.module.scss" const Cmtlist:FC<{}>=(props)=>{ return ( <div> <h1 className={cssObj.title}>Comments List</h1> </div> ) } export default Cmtlist 4. Use styled-componentsAdvantages: The combination of template string tag + style is a component starting with a capital letter. For example, it can be said that it integrates some of the most popular writing methods in react development. For react developers, it is a very good start. So, in react components, different developers have different habits of using external CSS or component CSS. use: Need to install styled-components npm i styled-components or yarn add styled-components vscode installation plug-in for easy writing 4.1 Initial Useimport 'antd/dist/antd.less' import styled from 'styled-components' function App() { const HomeWrapper = styled.div` font-size:50px; color:red; span{ color:orange; &.active{ color:green; } &:hover{ color:blue; font-size:40px; } &::after{ content:'ssss' } } ` return ( <div className="App"> <h1>I am a title</h1> <HomeWrapper> <h2>I am a subtitle</h2> <span>Carousel 1</span> <span className="active">Carousel 2</span> <span>Carousel 3</span> <span>Carousel 4</span> </HomeWrapper> </div> ); } export default App; 4.2 Setting attributes through attrsimport 'antd/dist/antd.less' import styled from 'styled-components' function App() { const ChangeInput = styled.input.attrs({ placeholder:'wangsu', bgColor:'red' })` background-color:#7a7ab4; color:${props=>props.bgColor} ` return ( <div className="App"> <h1>I am a title</h1> <ChangeInput type="text"/> </div> ); } export default App; 4.3 CSS inheritanceimport React, { Component } from 'react' import styled from 'styled-components' const HYbutton = styled.button` color:red; border:1px solid #ccc; padding:10px 20px; ` //Here we use inheritance const XLbutton = styled(HYbutton)` background-color:blue; ` export default class Button extends Component { render() { return ( <div> <HYbutton>This is a button</HYbutton> <XLbutton>This is an inherited button</XLbutton> </div> ) } } I have been using this method when developing projects these days. It feels very novel. Although there are disputes in the community, I personally like this method of setting CSS. I don’t have to consider the global style issues at all. The above is the details of how to write CSS elegantly with react. For more information about writing CSS with react, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
>>: Summary of common sql statements in Mysql
Today, this post lists some great examples of circ...
1. Methods for implementing components:組件名稱首字母必須大...
This article uses examples to describe MySQL'...
Import the data exported from the Oracle database...
Step 1: Use Notepad to open the "my.ini"...
Docker usage of gitlab gitlab docker Startup Comm...
Regarding display: flex layout, some people have ...
If you want to display extra text as ellipsis in ...
1 Introduction In the article "Start Postgre...
Preface <br />I have been working in the fro...
1. The difference between the command > and &g...
Table of contents background: Nginx smooth upgrad...
<br />The following are the problems I encou...
Preface Usually, a "paging" strategy is...
User and Group Management 1. Basic concepts of us...