CSS conflict in React

WBOY
Release: 2024-08-29 15:06:04
Original
714 people have browsed it

UI is the first step before we start typing logic to complete our front end. So we write the markup followed by the essential styles required to get the desired ui. While writing the markup we have to create meaningful class names to address and access the HTML tag and add style to it. With simple UI and distinct tags we can do so more or less easily. While writing repeating and complex UI, giving meaningful and distinct names becomes a disaster as there are only a few generic names. So we create components and style sheets for individual components. As shown below.

CSS conflict in React

We can see two components, GreenContainer and RedContainer are being imported to the App.js from the components folder inside src. Their respective style sheets are RedContainer.css and GreenContainer.css, which are imported from the styles folder. Let's look at both the component and their style sheets one by one.

The first component, RedContainer.jsx

CSS conflict in React

The respective style sheet is - RedContainer.css

CSS conflict in React

Now have a look at the second component, GreenContainer.js -

CSS conflict in React

CSS file for the second component, GreenContainer.css

CSS conflict in React

Both style sheets contain distinct CSS properties for their respective components. So the expected UI outcome may be a screen where there are two blocks, one is a red square with 150px arms and another one is a green square with 200px arms. Let's have a look at the rendered React app.

CSS conflict in React

Why is this happening? The CSS properties from the last container have been applied to both containers. But how? The answer is just before the React app is rendered all the style sheets are compiled into a single CSS file, where there are two class selectors with the same name - ".container" and this is why CSS properties from the last ".container{}" have been applied to all the containers globally. This issue can be fixed by using CSS Modules. CSS Modules are CSS files where all class names are scoped locally by default. This helps us in the following ways

1) Localizing the styles to specific components prevents this global scope conflict.

2) Allow the use of the same class names in different modules and promote modular styling.

To use modular styling we have to replace ".css" with ".module.css" and import 'styles' from those files.

CSS conflict in React

Importing the styles to their respective components. For RedContainer -

CSS conflict in React

For the GreenContainer

CSS conflict in React

In general, we write className as a string like this, if the className is "container" we will write className = "container". For CSS Modules we will write the class name like this className = {styles.container} in jsx files. Now let's see the react app rendered -

CSS conflict in React

Now there are no issues of CSS conflict and the styles are applied to the respective components appropriately.

The above is the detailed content of CSS conflict in React. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template