The structure is:
<div className="d-flex flex-column">
<div>
Text
</div>
<div style={{ backgroundImage: 'url(...)' }}>
</div>
</div>
Url is working. Div exists, but image not showing When I use flex-row it works
The structure is:
<div className="d-flex flex-column">
<div>
Text
</div>
<div style={{ backgroundImage: 'url(...)' }}>
</div>
</div>
Url is working. Div exists, but image not showing When I use flex-row it works
add two more styles
background-size: contain;background-repeat: no-repeat;
<div class="d-flex flex-column">
<div>
Text
</div>
<div style="background: url(https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png);background-size: contain;background-repeat: no-repeat;">
<br><br><br><br>
</div>
</div>