我使用 Dreamweaver 创建了我的表格,它为我创建了所有的高度和宽度,但是当我通过 CSS 验证器传递它时,我有
表格元素的宽度属性已过时。改用 CSS。
th 元素的 bgcolor 属性已过时。改用 CSS。
th 元素的 height 属性已过时。改用 CSS。
基本上,他们说第 th 元素的所有属性都已过时。
<table width="1108" border="1" id="table">
<tr id="toprow">
<th width="103" height="45" bgcolor="#000000" scope="row">Name</th>
<th width="114" bgcolor="#000000">Type </th>
<th width="104" bgcolor="#000000">Summoner Level</th>
<th width="191" bgcolor="#000000">Maps</th>
<th width="566" bgcolor="#000000">Description</th>
</tr>
<tr>
<th height="120" scope="row"><p><img src="summonerspells/64px-Barrier.png" width="64" height="64" alt="barrier"></p>
<p>Barrier</p></th>
<td>Defense</td>
<td>Level 6</td>
<td><p>Summoner's Rift<br>
Twisted Treeline<br>
Crystal Scar<br>
Howling Abyss</p></td>
<td>Shields your champion for 115-455 (depending on champion level) for 2 seconds.</td>
</tr>
<tr>
<th height="68" scope="row"><p><img src="summonerspells/Teleport.png" width="64" height="64" alt="teleport"></p>
<p>Teleport</p></th>
<td>Utility</td>
<td>Level 2 </td>
<td>summoners rift</td>
<td>After casting for 4 seconds, teleports your champion to target allied minion, turret, or ward.</td>
</tr>
<tr>
<th height="68" scope="row"><p><img src="summonerspells/Clarity.png" width="64" height="64" alt="clarity"></p>
<p>Clarity</p></th>
<td>Utility</td>
<td>Level 1</td>
<td>Summoner's Rift<br>
Twisted Treeline<br>
Crystal Scar<br>
Howling Abyss</td>
<td>Restores 40% of your champion's maximum Mana. Also restores allies for 40% of their maximum Mana</td>
</tr>
这是代码的一部分,我的表很长,所以读起来会很累。如果你知道如何解决高度问题,我可以在我的其余代码上解决它。