Input boxes with transparent background are not clickable in IE8

后端 未结 14 1717
暖寄归人
暖寄归人 2020-12-13 06:11

I have an absolutely positioned input box in a form. The input box has transparent background:

.form-page input[type=         


        
14条回答
  •  眼角桃花
    2020-12-13 06:58

    Just give the input field a transparent background image and it will work...

    Example:

    #search .input {
    width:260px;
    padding:3px 5px;
    border:0;
    background:url(../images/trans.gif);}
    

提交回复
热议问题