Author -  Sai gowtham

How to set a Background Image in React

In this tutorial, we are going to learn about how to set a background-image in the react app using inline styles and external css.

This tutorial assumes that you already created a new react project using create-react-app.

Setting image using inline styles

Example:

import React from 'react';
import car from './images/car.png'
function App() {
  return (
    <div  styles={{ backgroundImage:`url(${car})` }}>      <h1>This is red car</h1>
    </div>
  );
}

export default App;

In the above example first, we imported car image from the images folder then we added it to the div element using backgroundImage css property.

Setting image using external css

If you don’t like adding background images using inline styles we can also add using external css styles.

Example:

App.js
import React from 'react';
import './App.css';
function App() {
  return (
    <div  className="container">      <h1>This is red car</h1>
    </div>
  );
}

export default App;
App.css
.container{
  background-image: url(./images/car.png);
}

You can also read, how to set a background image in Html.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY