开发者

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>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜