我需要为没有HTML的作业做一个基本的网络,我看过很多例子,但我不知道为什么我有这些白色空间。
我尝试过交换属性,但是......
这是我的代码。
<body style="margin: 0px; padding: 0px">
<table width="100%" style="height: 100%" cellpadding:"10" cellspacing:"0" border="0">
<tr>
<td colspan="5" style="height: 100px;" bgcolor="white"><h1 align="center"><img src="img/logo.png"></h1></td>
</tr>
<tr>
<td width="15%" height="800px" rowspan="5" valign="top" bgcolor="#d2d8c7"></td>
<td height="75px"colspan="3" valign="middle" bgcolor="#d2d8c1"</td>
<td width="12%" height="800px" rowspan="4" valign="top" bgcolor="#d2d8c7"></td>
</tr>
<tr>
<td width="10%" height="20%" bgcolor="#d1d8c7"></td>
<td width="40%" height="100%" bgcolor="#d1d1c7"></td>
</tr>
<tr>
<td width="10%" height="20%" bgcolor="#d1d8c7"></td>
</tr>
答案 0 :(得分:1)
您还可以通过更改bordercollapse属性来使用css。
table {
border-collapse: collapse;
}
答案 1 :(得分:0)
您需要更正表格的第一行。它应该是这样的:
A - B - C - F (master)
\
D - E - F' (feature)
^
(origin/feature)
答案 2 :(得分:0)
替换以下html行
<table width="100%" style="height: 100%" cellpadding:"10" cellspacing:"0" border="0">
用这个:
<table style="height:100%; border-collapse:collapse; border:0px; width:100%;">