格式化HTML列表以添加可变大小的空间

时间:2012-12-01 22:38:41

标签: html css

有没有办法在列表中放置“tab”符号,因此不同长度的单词将被格式化为表格:

例如

<li>Word1 <something> description111111111111</li>
<li>Word2222222 <something> description</li>

最后看起来像这样:

Word1            description11111111111
Word2222222      description

有可能吗?

2 个答案:

答案 0 :(得分:1)

使用SPAN标记,然后将其绝对定位在LI标记内:

 <li>Column 1<span>Column 2</span></li>

CSS

li { position: relative } 
li span { position: absolute; left: 100px }

答案 1 :(得分:0)

查看the answer to this post,其中包含:

  

使用CSS更清晰。尝试填充左:5em或margin-left:5em,取而代之。