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

时间:2011-09-10 11:43:41

标签: html css html-table marquee

如何设置<的高度th>标签或<表>。我发现身高= 600px;作为属性,但它只是从屏幕顶部向下600像素,但没有将表的高度设置为600像素;

 <table>
 <tr>
 <th style="width : 400px ;height:600px">
 <marquee direction=up behavior="scroll">
  hello
 </marque>
 </th>
 </tr>
 </table>

我正在学习如何抓住桌子和牌子标签。我需要在&lt;中向下滚动一些文字从底部到顶部打招呼。 th>标签,但我无法设置高度。如果我使用direction=left或者因为我增加了宽度,它的工作正常,但我如何设置&lt;的高度? th>或者&lt;表&gt; 。当我输入文字时它会增加,但我想明确地这样做

2 个答案:

答案 0 :(得分:3)

就表格而言,你正在做正确的事情,让你的marquee垂直展开,直到它的容器只添加style="height: 100%;"

答案 1 :(得分:1)

我认为通过添加100%高度的样式将解决您的问题。

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