Search code examples
angularimagebackground-image

Angular4 background image


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>

Solution

  • try this and be sure that you have added your assets in angular-cli.json

    [ngStyle]="{'background-image': 'url(' + imageresult.pictureUrl+ ')'}"