ie 中float:right 换行的问题

使用float:right 后,firefox、google浏览器没出现换行的问题,但在ie中出现了换行错位,第一行最右边的掉到第二行去了。
用定位的方法,在里面设置position:absolute;right:0px; 例 如下面代码:

1 <html>
2 <body>
3 <ul>
4 <li><a href="#">title1</a> <span style="position:absolute;right:5px;">2012-12-24</span></li><!--无错位-->
5 <li><a href="#">title2</a> <span style="float:right">2012-12-24</span></li><!--会有错位-->
6 </ul>
7 </body>
8 </html>
原文地址:https://www.cnblogs.com/wowchky/p/2729119.html