padding a text input in IE… possible?

前端 未结 9 1374
逝去的感伤
逝去的感伤 2020-12-14 07:54

I have a text input with a search buton absolute positioned over it... to make space for the button I used some padding to keep the text from going under the button, which i

9条回答
  •  萌比男神i
    2020-12-14 09:00

    I had this issue also i solved it by adding the following line

    input 
    {
        overflow:visible;
        padding:5px;
    }
    

    hope this helps? Let me know.

提交回复
热议问题