i am using reactjs and in my main page container i am setting a background image as such:
.opening-container {
background-image: url("../../images/sadaqashdbg.png");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
and the opening-container is the main div and includes all the elements on the page, however when the bg image is not showing, and when i put height:100% it still does not show, but when i put height:1200px; or height:100vh it starts showing but not covering whole page also
example:
<div className='opening-container'>
<button></button>
<button></button>
<h2></h2>
<p></p>
</div>