Answers for "how to do background image in react"

CSS
9

how to add background image in react css

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;
Posted by: Guest on July-23-2020
1

background image react

in your css 

.background {
  background-image: url('./Images/img.png')
}
Posted by: Guest on September-26-2021

Code answers related to "how to do background image in react"

Browse Popular Code Answers by Language