之前我已经完成了这个但是由于某种原因我现在尝试使用fieldset来显示背景图像,我只能在firefox中看起来很漂亮。什么是一个很好的跨浏览器解决方案,可以将背景图像添加到文本框中。
我正在尝试的例子
<div class="subscribe">
<form method="get" id="searcform" action="">
<fieldset class="search">
<input type="text" class="box" value="Subscribe to Email Newsletter" />
<button class="btn" title="Subscribe">Subscribe</button>
</fieldset>
</form>
</div>
答案 0 :(得分:0)
我不确定你的意思究竟是什么元素,但以下内容应该有效:
input[type=text],
textarea {
background: #fff url(path/to/image.png) 0 0 no-repeat;
}
答案 1 :(得分:0)