Partial vertical borders on form input

前端 未结 1 753
予麋鹿
予麋鹿 2021-01-23 16:16

GOAL:
I am trying to create partial vertical borders on a form input. The desired effect is the following:

PROBLEM:

相关标签:
1条回答
  • 2021-01-23 16:50

    You can go with gradient for each side like this:

    input {
     border:none;
     padding:10px;
     background:
       /* Bottom side*/
       linear-gradient(#000,#000) bottom      /100% 2px ,
       /* Left side */
       linear-gradient(#000,#000) bottom left /2px 10px,
       /* Right side */
       linear-gradient(#000,#000) bottom right/2px 15px;
     background-repeat:no-repeat;
    }
    <input type="text" placeholder="text">

    0 讨论(0)
提交回复
热议问题