I use reactjs with bootstrap 4, I want to make a header similar to the image below.
I don't know how to get this same result (linear gradient + background-image)
Example of a header I want to get
the image link is dynamic so I use the online styles for my header, dans le
const backgroundStyle = {
backgroundImage: `url(${getImageFromApi(movie.backdrop_path, 'IMAGE_BASE_URL')}),radial-gradient(circle at 20% 50%, rgba(11.76%, 15.29%, 17.25%, 0.98) 0%, rgba(19.61%, 21.96%, 23.53%, 0.88) 100%)`,
backgroundRepeat:'no-repeat',
backgroundPosition:'center center',
backgroundSize:'cover',
height:'85vh',
maxWidth:"100%",
marginTop:200
}
Thank you in advance for your help and your answers.