Force Column Size To Smallest Possible
I have a table with information in it and an icon in the last column that perfoms a function. I was wondering if it were possible to force that column to be as small as possible (i
Solution 1:
Your table width is set to 100%, no? Try adding another column after your icon column with blank cells and see if that does not take some of the extra width away.
Solution 2:
Set width for TD tag as same as width for IMG tag(icon), like this code: <td width="16"><img width="16" ... />
Post a Comment for "Force Column Size To Smallest Possible"