如何放置桌子?
如何防止表格单元格重叠?我需要将表格数据中左侧的表格保持在固定位置,以便右侧的数据需要滚动左侧 td 单元格将保留在那里。
我这里有一个 html 示例 -
http://jsbin.com/ifiha4/edit#preview
和代码 -
<table ID="Table1" Width="100%">
<tr>
<td align="center" class="style2">
<table border="" style="width:20%;position:fixed;left:54px; top: 84px;">
<th>some table</th>
<tr>
<td> </td>
</tr>
</table>
</td>
<td align="center">
some text blah blah blah
</td>
</tr>
</table>
How can I prevent table cells from overlaping? I need to keep the table on the left within the table data in a fixed position so the data on the right requires scrolling the left td cell will remain there.
I have an example of the html here -
http://jsbin.com/ifiha4/edit#preview
and code -
<table ID="Table1" Width="100%">
<tr>
<td align="center" class="style2">
<table border="" style="width:20%;position:fixed;left:54px; top: 84px;">
<th>some table</th>
<tr>
<td> </td>
</tr>
</table>
</td>
<td align="center">
some text blah blah blah
</td>
</tr>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您应该尝试设置您正在使用的每一列的宽度。这对你有用吗?
更好的方法是这样做:
从长远来看,您会很高兴更改为 div。 :)
http://jsbin.com/ifiha4/7/edit#preview
I think you should try setting widths on each column that you are using. Does this work for you?
The better way is to do this:
You will be happy you changed to div in the long run. :)
http://jsbin.com/ifiha4/7/edit#preview