Reputation: 311
I created a asp.net web page and I have a html table 16 columns wide with a datalist control on every column. I need to give the look of a gridview control, (One column of data next to the other) but somehow there is a lot of white space in the Table Column around the datalist controls, how can I reduce this to the minimum so each column show next to each other?
Upvotes: 0
Views: 1102
Reputation: 652
Make sure you don't have the width of your outer table set to 100%. Perhaps a dump of the markup would be useful here.
Upvotes: 1
Reputation: 14781
<Table Style="padding:0px; cell-spacing:0px;">
...
</table>
Upvotes: 0