我想在 H1 标签后面显示图像,我还希望图像宽度拉伸到与文本相同的宽度。
我的代码:
<div style="display: inline;">
<img src="http://img585.imageshack.us/img585/3989/m744.png" width="100%" height="68" />
<h1 style="position: absolute; top: 0px;">Variable length text</h1>
</div>
JSFiddle:http: //jsfiddle.net/Aykng/
当前外观:
所需外观:
图像宽度应该拉伸或缩小以填充 div,我该如何实现?
我希望它与 IE 7+ 兼容,否则我只会使用background-image
and background-size
。