html – 使用CSS对齐

我需要使用style属性对齐一组行

这是使用XSL进行转换的HTML代码

<span style="white-space: pre; font-size: 8pt; font-family: Lucida console, Courier ">&lt;40      : item1</span><br>
<span style="white-space: pre; font-size: 8pt; font-family: Lucida console, Courier ">40-80    : item2 </span><br>

我们需要的是如何对齐像

<40      : item1
40-80    : item2

目前看起来像

<40 : item1
40-80 : item2 

这可能是使用样式属性吗?

使用Internet Explorer版本6&以上

最佳答案 HTML td标签有一个char属性,但据我所知,它根本不受支持.

这是有效的HTML:

<table>
  <tr char=".">
    <td>11.10</td>
  </tr>
  <tr char=".">
    <td>111.20</td>
  </tr>
  <tr char=".">
    <td>15552.52</td>
  </tr>
</table>

我过去曾使用过这种解决方法:

http://krijnhoetmer.nl/stuff/javascript/table-align-char/

点赞