I have a simple table. The first column has max-width set at 15px. It is design to hold a small icon. I have a few summary rows at the bottom of the table. In on of those rows, I have some long text in that first, small width column. I want the entire text to overflow beyond the TD width. I have this working in all browsers except IE7.
I have a jsfiddle set up at http://jsfiddle.net/sweimer/A96Bx/4/. Open it in IE7 and you will see the text cuts off in the bottom of the first column. All other browsers show as desired.
Thanks in advance for your time.
scott
You are looking for the
colspanattribute which says, “I want this cell to span x columns in my table,” and set it to “5” since your table has 5 columns in total.