how to change input text box style to line?

前端 未结 6 1494
醉酒成梦
醉酒成梦 2021-02-03 10:48

in my form I have three input fields name, email, mobile but I want to change input text box like -

name :  _____________  
email:  _____________  
mob  :  ___         


        
6条回答
  •  囚心锁ツ
    2021-02-03 11:22

    if you want to this also in ie6 than you can use bg image for this with background-position

    .

    input{
        background:url(bg-dot.jpg) repeat-x center bottom;
        border:none;
        padding:2px 2px;
    }
    

    so for all browser support with ie6 you should use this.

提交回复
热议问题