拉伸表格的宽度以适应网络浏览器
我在互联网上搜索了很长时间试图解决我的问题。我有一个表格,其中包含我的整个网站,并希望它能够拉伸以适应用户的网络浏览器大小。 这是该网站的所有代码:
<body>
<table width="100%" border="0">
<tr>
<td width="525" rowspan="2"><img src="My Images/Speaker.png" width="525" height="772"
ondragstart="return false" />
</td>
<td width="697" height="16">
*Flash Video Here*
</td>
</tr>
<tr>
<td><img src="My Images/Vymil.jpg" width="822" height="597" ondragstart="return false"/></td>
</tr>
</table>
</body>
</html>
任何有用的解决方案将不胜感激。
I have scoured the internet for a long time trying to solve my problem. I have a table with my whole site in it and would like for it to stretch to fit the user's web browser size.
Here is all the site's code:
<body>
<table width="100%" border="0">
<tr>
<td width="525" rowspan="2"><img src="My Images/Speaker.png" width="525" height="772"
ondragstart="return false" />
</td>
<td width="697" height="16">
*Flash Video Here*
</td>
</tr>
<tr>
<td><img src="My Images/Vymil.jpg" width="822" height="597" ondragstart="return false"/></td>
</tr>
</table>
</body>
</html>
Any helpful solutions would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
和
中给出 100%,并对每个
给出适当的百分比
Give width in Percentage in
<table>
and<TD>
tag. This it will set as per browser window size. Give 100% in<table>
and appropriate percentages to every<TD>
这将确保您的表格能够拉伸到浏览器的大小。
http://jsfiddle.net/L9wMU/
This will ensure your table will stretch to your browser's size.
http://jsfiddle.net/L9wMU/