how to change input text box style to line?

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

    If using styled components you can do the following if using a white background, which I think there are some equivalent CSS to do same thing:

    const TextInput = styled.TextInput`
      width: 295px;
      height: 30px;
      border: 1px solid #dbdfea;
    
      border-top-color: white;
      border-left-color: white;
      border-right-color: white
     ` 
    

提交回复
热议问题