我不太确定是否有办法做到这一点,从现在起,我想我只会把一个单独的元素与绝对的定位,并把它放在适当的位置。
这就是我想用桌子做的..。有可能吗?现在,我有一张桌子,你可以看到一部分在右边,但我只是想办法做到这一点。

我现在有一个正常的桌子布局:但是看看小提琴:http://jsfiddle.net/W3Tvm/
我想主要的挑战将是保持border-radius
<table class="overviewTable">
<thead>
<tr>
<th colspan="5">
FAN FREE TERMINALS</th>
</tr>
</thead>
<thead class="posiOverviewPN">
<tr>
<th class="txHeader">
TX4200E</th>
<th class="ksHeader">
KS6700</th>
<th class="ksHeader">
KS7200</th>
<th class="ksHeader">
KS7500</th>
<th class="ksHeader">
KS7700</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img height="68px" src="../posiflex/images/tx-4200.png" width="120px"></td>
<td>
<img height="108px" src="../posiflex/images/ks6700.png" width="120px"></td>
<td>
<img height="109px" src="../posiflex/images/ks7200.png" width="120px"></td>
<td>
<img height="117px" src="../posiflex/images/ks7500.png" width="120px"></td>
<td>
<img height="119px" src="../posiflex/images/ks7700.png" width="120px"></td>
</tr>
</tbody>
</table>发布于 2013-12-12 19:32:18
我相信您想要做的是基本的表结构:http://jsfiddle.net/9VULt/
您所需要做的就是拥有空的th/td单元:
<table>
<thead>
<tr>
<th><!--empty--></th>
<th>TX42</th>
</tr>
<tr>
<th><!--empty--></th>
<th>image</th>
</tr>
</thead>
<tbody>
<tr>
<td>Advantage</td>
<td>Industrial grade...</td>
</tr>
</tbody>
</table>https://stackoverflow.com/questions/20552292
复制相似问题