Search code examples
angularhtml-table

How do I want to expand the table? Angular14


this is my table

I want in th over 1 year

https://stackblitz.com/edit/angular-ivy-wnesxu?file=src/app/pur/com1/com1.component.html


Solution

  • How about like this?

    <th style="overflow: hidden;
            width: 200px;
              text-overflow: ellipsis;
                white-space: nowrap;">
        Over 1 Year
    </th>
    

    stackblitz