(礼拜一log)前端开发: 标签的 colspan 属性 & 两个div并排、一个宽度固定的实现方法

时间:2021-07-20 19:39:01

表格单元横跨两列的表格:

<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td colspan="2">January</td>
</tr>
<tr>
<td colspan="2">February</td>
</tr>
</table>

可见:colspan 属性规定单元格可横跨的列数。
并且所有浏览器都支持该属性。

两个div并排、一个宽度固定的实现方法:

<div style="width: 50px;height: 50px;float:left;background:red"></div>
<div style="margin-left: 50px;height: 50px;background:blue"></div>