如何设置<的高度th>或<表>标签?表>的高度th>
如何设置<的高度th>标签或 <表>.我发现高度=600px;作为属性,但它只是从屏幕顶部向下 600 像素,但没有将表格高度设置为 600 像素;
<table>
<tr>
<th style="width : 400px ;height:600px">
<marquee direction=up behavior="scroll">
hello
</marque>
</th>
</tr>
</table>
我正在学习如何更好地抓住桌子和品牌标签。我需要在 << 中从下到上滚动一些文字“打招呼”。 th>标签,但我无法设置高度。如果我使用 direction=left
或 right 效果很好,因为我增加了宽度,但如何设置 direction=left
的高度th>或<表> 。当我输入文本时它会增加,但我想明确地执行它
How to set the height for the < th > tag or the < table >. I found height=600px; as the property but its just going 600 pixels down from top of the screen but not setting the height of table as 600 px;
<table>
<tr>
<th style="width : 400px ;height:600px">
<marquee direction=up behavior="scroll">
hello
</marque>
</th>
</tr>
</table>
I'm just learning to grasp more grip on tables and marque tag. I need to scroll up some text say hello from bottom to top in the < th > tag but I'm unable to set the height. Its working good if I use direction=left
or right because I have increased width but how do I set the height of the < th > or < table > . Well its increasing when I enter text but I want to do it explicitly
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就表格而言,您的做法是正确的,为了让您的
marquee
垂直扩展至其容器,只需添加style="height: 100%;"
即可you are doing it right as far as the table goes, for your
marquee
to expand vertically as far as its container just addstyle="height: 100%;"
to it我认为通过添加高度 100% 的样式可以解决你的问题。
i think by adding style with height 100% will solve ur problem.