limiting column width in html

frtqhmxdei

New Member
I have built the following table:\[code\] <table id="viewConfigurationTable" style="width:700px"> <tr> <td style="width:100px">Id</td> <td style="width:100px">Name</td> <td style="width:200px">Status</td> <td style="width:300px">Ctids</td> <td style="width:300px">CreationDate</td> </tr> <% foreach (var config in Model.AliveConfigurations) { %> <tr> <td><%=config.Id%></td> <td><%=config.Name%></td> <td><%=config.Status%></td> <td><%=config.Ctids%></td> <td><%=config.CreationDate%></td> </tr> <% } %></table>\[/code\]and yet the \[code\]Ctids\[/code\] column get really wide sometimes.How can I fix this?
 
Back
Top