how to change input text box style to line?

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

    you want to show only bottom part that's why apply css in such a way that it disables all the other three parts ..

    apply CSS like

    border: 1px solid black;
    float: left;
    margin: 0;
    padding: 0;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    

    works for all

提交回复
热议问题