具有两个跨距的列表项左右对齐

时间:2011-05-24 06:06:21

标签: html css alignment

我目前有一个看起来像这样的列表。

<li><a href="#"><span class="short">SHORT</span> <span class="long">LONG</span></a></li>

我希望短跨度与右侧对齐,长跨度与左侧对齐。

我目前的列表宽度为350px,并且长时间使用此列表。

.long {

   width: 300px;
   position: absolute;
   right: 0px;
}

似乎找不到让短跨度与右对齐的方法。

1 个答案:

答案 0 :(得分:4)

您是否尝试过使用float

ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 500px;
}

li {
    list-style-type: none;             
}

.long {
    width: 300px;
    float:left;
    background-color: yellow;
}

.short {
    width: 200px;
    float:right;
    background-color: green;   
}