How to set table not to collapse when i minimize the browser ! in vb.net?
How to set table not to colla开发者_如何转开发pse when i make the size of browser smaller ! in vb.net
you should set table width to static
ex: <table width="1000px">
You should use table-layout:fixed CSS with static width of cells.
<table style="table-layout:fixed">
<tr>
<td style="width:25%">width:25%...longtext...longtext...longtext...</td>
<td style="width:120px">width:120px longtext...longtext...longtext...</td>
</tr>
</table>
精彩评论