<span style=" text-decoration:line-throughcolor:red">199元</span><br />
<span style="font-weight:boldcolor:green">现价:99元</span>
<style type="text/css">body {
font-size:18px
}
small {font-size:14px}
-->
</style>
<body>
99<small>.23</small>
</body>
用 display:inline-block就可以了,如果你不想用 float 的话。.current{display:inline-blockwidth:XXpxheight:XXpxbackground:url(img.jpg) no-repeat}
不过在IE6上,虽然能设置宽,高,但响应鼠标指针的焦点有问题,所以建议用 padding 设置。
.current{padding:6px 10pxbackground:url(img.jpg) no-repeat}
这个就不用设置宽,高了,因为用了 padding 把 .current 的区域扩大了,至于具体数据,你自己按你图片大小进行调整就好了。