I am trying to use a table where I will define fixed width columns. Each column width is pre-defined and applied to a 'th' element in the table header via: ng-style='{"width":get_width[i]+"px"}', where the get_width function returns a number.
This works just fine as long as the text does not exceed the column width specified. If it does, the width changes to accommodate the entire text.
Question, how can I use CSS to force the column width to my specification? The text may be truncated if longer.
Thx in advance.