使用自定义图形时,为什么我在 Chrome / Firefox 中得到不同的提交按钮位置?
我有 2 个输入...一个文本字段和一个提交按钮。我通过 CSS 在两者上使用自定义背景图像。两个图像的高度相同,均为 18 像素。在 Chrome 中,按钮显示得略低于文本字段。在 Firefox 中,它是准确的。
我正在使用的 CSS 是:
.search-field {background: url('search-field.png') no-repeat transparent!important; width: 117px!important; height: 18px!important; border: none!important; margin-right: -7px!important; }
.search-button {background: url('search-button.png') no-repeat transparent!important; width: 16px!important; height: 18px!important; border: none!important; text-indent: -9999!important; text-transform: capitalize!important;}
我正在使用的 HTML 是:
<div class="search">
<input class="search-field" type="text" />
<input class="search-button" type="submit" value="" />
</div>
下面的屏幕截图来自 Chrome。在调整该字段的 CSS 后,我似乎能够在 Chrome 中纠正它,但随后它会以相反的方式在 FF 中中断。
I have 2 inputs... a text field and a submit button. I'm using custom background-images on both via CSS. The images both have the same height of 18px. In Chrome the button gets displayed slightly lower than the text-field. In firefox, it's spot-on.
The CSS I'm using is:
.search-field {background: url('search-field.png') no-repeat transparent!important; width: 117px!important; height: 18px!important; border: none!important; margin-right: -7px!important; }
.search-button {background: url('search-button.png') no-repeat transparent!important; width: 16px!important; height: 18px!important; border: none!important; text-indent: -9999!important; text-transform: capitalize!important;}
The HTML I'm using is:
<div class="search">
<input class="search-field" type="text" />
<input class="search-button" type="submit" value="" />
</div>
The screenshot below is from Chrome. I seem to be able to correct it in Chrome after tweaking the CSS for the field, but then it breaks in FF the opposite way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望这有帮助..检查小提琴.. http://jsfiddle.net/mvivekc/XNNAW/
hope this helps.. Check the fiddle.. http://jsfiddle.net/mvivekc/XNNAW/