okmmy123456
okmmy123456

Reputation: 55

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

Upvotes: 0

Views: 70

Answers (1)

Naren Murali
Naren Murali

Reputation: 56172

How about like this?

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

stackblitz

Upvotes: 1

Related Questions