I try to set an image i get from my api as background image from my header. But it will not work as expected...
This is my code:
<div class="container">
<div class="header" [ngStyle]="{background: 'url('userProfile.headerImagePath')'}">
...
css
.header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 500px;
min-width: 100%;
background-color: yellowgreen;
}