Languages
[Edit]
EN

React - how to style with embedded <style> element

2 points
Created by:
Reilly-Collier
860

In this article, we would like to show you how to style with embedded <style> element in React.

Below example presents the use of template literals (``) wrapped with curly braces ({}) inside <style> tag to create the style for our <div> element.

Practical example:

// ONLINE-RUNNER:browser;

// Note: Uncomment import lines during working with JSX Compiler.
// import React from 'react';
// import ReactDOM from 'react-dom';

const App = () => {
  return (
    <div>
      My div
      <style>{`
        div {
          background: lightblue;
          border: solid;
          border-color: blue;
        }
     `}
      </style>
    </div>
  );
}

const root = document.querySelector('#root');
ReactDOM.render(<App />, root);

Alternative titles

  1. React - embedded <style> element
  2. React - embedded style tag
  3. React - use <style> element
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

ReactJS

React - how to style with embedded <style> element
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join