標記:瀏覽器設置了多少高度?
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<table width="500" border="0">
<tr>
<td colspan="2" style="background-color:#FFA500;">
<h1>Main Title of Web Page</h1>
</td>
</tr>
<tr>
<td style="background-color:#FFD700;width:100px;"> <b>Menu</b>
<br>HTML
<br>CSS
<br>JavaScript</td>
<td style="background-color:#eeeeee;height:200px;width:400px;">Content goes here</td>
</tr>
<tr>
<td colspan="2" style="background-color:#FFA500;text-align:center;">Copyright ? W3Schools.com</td>
</tr>
</table>
</body>
</html>
在HTML中,有沒有關於頂線和底線的高度定義。瀏覽器設置了多少高度?因爲每個瀏覽器將用自己的方式表
不要使用表格進行佈局。 – bjb568
按'F12'打開開發人員工具,然後選擇'計算'選項卡。選擇任何元素,它會顯示計算出來的尺寸。 – Abhitalks
如果HTML是在Firefox中,我怎麼能看到這樣的事情在鉻? –