Margin for bottom border

后端 未结 4 1230
忘了有多久
忘了有多久 2021-02-13 12:30

Is there any way I can only add margin to the border ?

Only border should have margin not the text. I am trying to move border not the text field. Border need to be shri

4条回答
  •  故里飘歌
    2021-02-13 12:32

    You can use text-indent.

    .margin-check {
      border-bottom: 1px solid #d2d7da;
      margin-left : 15px;
      text-indent: 15px;
    }
    Something I am typing for checking the border margin

提交回复
热议问题