使用Colspan时,最后一列的border-right消失

时间:2015-02-16 21:46:46

标签: php html css dompdf

我目前正在使用DOMPDF将html转换为PDF格式。当我在一行中有多列时,最后一列没有右边框。我在某个地方看到它可能是因为我使用百分比但是使用pt和px,我仍然得到相同的结果。我还有另一行使用50%作为我的colspan,它显示最后一列的右边界。那个解决方案吗?

它的外观如下: enter image description here

这是另一个: enter image description here

我还附上了我如何格式化代码的图像。 enter image description here

如果我的问题似乎不清楚,需要更多细节,请告诉我,我会更详细。

1 个答案:

答案 0 :(得分:0)

我不确定你想要什么,但colspan属性用于合并到同一列中的单元格:

<table>
  <tr>
    <th colspan="2">Month</th>
  </tr>
  <tr>
   <td>January</td>
   <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$100</td>
  </tr>
  <tr>
    <td colspan="2">Sum: $180</td>
  </tr>
</table>

如果要通过标签上的%use width属性设置单元格的含义...

喜欢......

 <td width="33%">some text</td>

REF-&GT; http://www.w3schools.com/tags/att_td_colspan.asp