所以我想在IE和IE下使<input type="text">
透明
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0)
完成工作
然而,文本无法看到......是否有一些解决方法?
谢谢。
答案 0 :(得分:4)
以下内容如何?
<input type="text" class="transparent"/>
<style>
input.transparent{
background-color: transparent;
border: 0 none;
}
</style>
此外,IE版本也有很大的不同。