scrimba
How to Set a Background Image in React
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

How to Set a Background Image in React
AboutCommentsNotes
How to Set a Background Image in React
Expand for more info
index.jsx
run
preview
console
import React from 'react';
import ReactDOM from 'react-dom/client';

function App() {
return (
<div style={{}}>
Hello World!
</div>
);
}

ReactDOM.createRoot(document.getElementById('root')).render(<App />);




















// backgroundImage: `url("https://images.unsplash.com/photo-1589308078059-be1415eab4c3?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80")`,
Console
/index.html
-3:19