我有一条虚线将表格的两行分开,如下所示。
<table cellspacing="0">
<tr>
<td>Issue</td>
<td>Date</td>
</tr>
<td style="border-bottom: 1px dotted red;padding-top:2px;width:800px;"></td>
<tr>
<td>Theres is a issue with the code</td>
<td>09-28-2012</td></tr>
</table>
这是fiddler version。我想把这个日期对准某个不在最后的地方。我怎么能这样做。
答案 0 :(得分:2)
将colspan = "2"
添加到带有虚线的td
。 colspan
和rowspan
分别定义单元格跨越的列数或行数。
以下是您演示的修改版本:little link。
答案 1 :(得分:1)
<table cellspacing="0">
<tr>
<td>Issue</td>
<td >Date</td>
</tr>
<tr>
<td class="td"></td>
<td class="td"></td>
<tr>
<tr>
<td>Theres is a issue with the code</td>
<td>09-28-2012</td>
</tr>
</table>
CSS:
.td{
border-bottom: 1px dotted red;width:800px;padding-top:2px;
}
答案 2 :(得分:1)
请试试这个:
<table cellspacing="0">
<tr>
<td>Issue</td>
<td>Date</td>
</tr>
<tr style="border-bottom: 1px dotted red;padding-top:2px;width:800px;"><td></td><td ></td></tr>
<tr>
<td>Theres is a issue with the code</td>
<td>09-28-2012</td></tr>
</table>