inline background image react code example
Example 1: react background image
style={{
backgroundImage: "url(" + "https://images.pexels.com/photos/34153/pexels-photo.jpg?auto=compress&cs=tinysrgb&h=350" + ")",
backgroundPosition: 'center',
backgroundSize: 'cover',
backgroundRepeat: 'no-repeat'
}}
Example 2: Setting a background Image With React Inline Styles
backgroundImage: `url(${Background})`
Example 3: how to import background image in inline css in react
style={{backgroundImage: `url(${pencil})`}}