我需要使下面的代码可伸展与预定义的高度
<style> .title{ background: url(bg.gif) no-repeat bottom right; height: 25px; } </style> <span class="title">This is title</span>
但由于span是内联元素,“height”属性将不起作用。
我试着使用div,但它会扩展到上元素的宽度。宽度应该灵活。
任何人都可以提出任何好的解决方案?
提前致谢。
解决方法
给它一个显示:inline-block在CSS – 应该让它做你想要的。
在兼容性方面:IE6 / 7将与此工作,怪异模式建议:
在兼容性方面:IE6 / 7将与此工作,怪异模式建议:
IE 6/7 accepts the value only on elements with a natural display: inline.