Home > other >  Display Images from Clearbit in Angular App
Display Images from Clearbit in Angular App

Time:01-04

I need to display Images from Clearbit website using Angular App.

Trying this but image is not displaying.

<div style="justify-content: center; display:flex;height: 70px">
  <img src="{{https://logo.clearbit.com/suzy.com/}}"  />
</div>

CodePudding user response:

If you remove your {{ ...}} around source, you can display the image

<div style="justify-content: center; display:flex;height: 70px">
  <img src="https://logo.clearbit.com/suzy.com"  />
</div>

CodePudding user response:

<img  [style.background-image]="'url('   ({{issuer.imageURL}} | async)   ')'">

  • Related