Html 如何使我的代码正确。使用td';s ad tr标签

Html 如何使我的代码正确。使用td';s ad tr标签,html,Html,我在这里创建了一些代码。当我在我的网页行(选项(如孟德尔、达尔文、有趣的事实))上尝试它时,我的问题是它是不相等的。请帮帮我。 代码如下。宽度不相等 <html> <head><title>DARMENTEUR</title></head> <body background="bg.jpg"> <table width="100%" align="center"> <tr> <td colspa

我在这里创建了一些代码。当我在我的网页行(选项(如孟德尔、达尔文、有趣的事实))上尝试它时,我的问题是它是不相等的。请帮帮我。 代码如下。宽度不相等

<html>
<head><title>DARMENTEUR</title></head>
<body background="bg.jpg">
<table width="100%" align="center">
<tr>
<td colspan="5"><br>
<h1 align="center" style="font-family:imagination station;color:#FFFFFF;font-size:54pt"><marquee direction="left" behaviour="scroll">DARMENTEUR</marquee></h1>
</td>
</tr>
<tr>
<td style="width:20%;">
<a href="information.html" target="t1"><p align="center" style="font-family:imagination station
;font-size:14pt;color:white;">DARWIN</p></a></td>

<td style="width:20%;">
<a href="gallery2.html" target="t1"><p align="center" style="font-family:imagination station;font-size:15pt;color:white;">MENDEL<*/p></a></td>

<td style="width:10%;">
<a href="quotes12.html" target="t1"><p align="center" style="font-family:imagination station;font-size:15pt;color:white;">PASTEUR</p></a></td>

<td style="width:20%;">
<a href="hi.html" target="t1"><p align="center" style="font-family:imagination station;font-size:15pt;color:white;">MINI QUIZ</p></a></td>

<td style="width:20%;">
<a href="hi.html" target="t1"><p align="center" style="font-family:imagination station;font-size:15pt;color:white;">FUNNY FACTS</p></a></td>
</tr>

<tr>
<td colspan="3" style="width:400px;">
<iframe src="info.html" width="1320px" height="1000" name="t1" id="t1">
<p> iframes are not supported by your browser.</p>
</td>
</tr>

</table>
</body>
</html>
</html>

达门图尔

达门图尔 您的浏览器不支持iFrame


此处的问题在于您为iframe标记指定的宽度和高度,这将导致所有列变得不相等(据我所知,您希望所有列的宽度固定),请检查以下代码我已进行了必要的更改,这将使所有列的宽度相等:

<html>
<head><title>DARMENTEUR</title></head>
<body background="bg.jpg">
<table width="100%" align="center">
<tr>
<td colspan="5"><br>
<h1 align="center" style="font-family:imagination station;color:#000;font-size:54pt"><marquee direction="left" behaviour="scroll">DARMENTEUR</marquee></h1>
</td>
</tr>
<tr>
<td style="width:20%;">
<a href="information.html" target="t1"><p align="center" style="font-family:imagination station
;font-size:14pt;color:black;">DARWIN</p></a></td>

<td style="width:20%;">
<a href="gallery2.html" target="t1"><p align="center" style="font-family:imagination station;font-size:15pt;color:black;">MENDEL</p></a></td>

<td style="width:10%;">
<a href="quotes12.html" target="t1"><p align="center" style="font-family:imagination station;font-size:15pt;color:black;">PASTEUR</p></a></td>

<td style="width:20%;">
<a href="hi.html" target="t1"><p align="center" style="font-family:imagination station;font-size:15pt;color:black;">MINI QUIZ</p></a></td>

<td style="width:20%;">
<a href="hi.html" target="t1"><p align="center" style="font-family:imagination station;font-size:15pt;color:black;">FUNNY FACTS</p></a></td>
</tr>

<tr>
<td colspan="5" style="width:400px; " align="center">
<iframe src="info.html" name="t1" id="t1">
<p> iframes are not supported by your browser.</p>
</td>
</tr>

</table>
</body>
</html>
</html>

达门图尔

达门图尔 您的浏览器不支持iFrame

您听说过吗?