Internet Explorer filters <input> transparent
So I want to make an <input type="text">
transparent under IE and this
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0)
开发者_开发问答makes the job
however, the text can't be seen... is there some workaround?
Thank you.
What about the following.
<input type="text" class="transparent"/>
<style>
input.transparent{
background-color: transparent;
border: 0 none;
}
</style>
Also the IE version makes quite a difference.
精彩评论