で修正display:inline-block(display:inline)
するにfloat:right
はie6
?
コード: http://jsfiddle.net/VGaGt/
html
<div>
text<span>>></span>
</div>
CSS
div{
float:left;
width: 300px;
height: 20px;
padding:5px;
background:#ccc;
}
span{
float:right;
width:20px;
height:20px;
display:inline-block;
zoom:1;
*display:inline;
cursor: pointer;
}