I am trying to make a background image to div. but image not showing. here is my code.
<div [ngStyle]="{'background-image' : imageresult.pictureUrl}"> some content here! </div>
try this and be sure that you have added your assets in angular-cli.json
[ngStyle]="{'background-image': 'url(' + imageresult.pictureUrl+ ')'}"