如何设置<的高度th>或<表>标签?

发布于 2024-12-04 02:02:38 字数 520 浏览 0 评论 0原文

如何设置<的高度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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

£烟消云散 2024-12-11 02:02:38

就表格而言,您的做法是正确的,为了让您的 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 add style="height: 100%;" to it

半枫 2024-12-11 02:02:38

我认为通过添加高度 100% 的样式可以解决你的问题。

  <marquee direction=up behavior="scroll" style="height:100%">
  hello
 </marquee>

i think by adding style with height 100% will solve ur problem.

  <marquee direction=up behavior="scroll" style="height:100%">
  hello
 </marquee>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文