how to change input text box style to line?

前端 未结 6 1504
醉酒成梦
醉酒成梦 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:17

    In your CSS:

    input[type=text] {
        background: transparent;
        border: none;
        border-bottom: 1px solid #000000;
    }
    

    From here you can play with padding to position the actual text entry where you would like it. For instance, to have the line extend 5 pixels either side of the actual entry area:

        padding: 2px 5px;
    

提交回复
热议问题