Answers for "angular title in hover"

0

angular title in hover

content_copy
<h2>Products</h2>

<div *ngFor="let product of products">

  <h3>
    <a [title]="product.name + ' details'">
      {{ product.name }}
    </a>
  </h3>

</div>
Posted by: Guest on February-17-2022

Browse Popular Code Answers by Language