Margin for bottom border

后端 未结 4 1211
忘了有多久
忘了有多久 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:39

    In general the margin is from the content which in this case is your text. You have to use box sizing property to set the margin from you border.

    * {box-sizing:border-box;}
    

    This way the margin for all your elements will be from the border box and not the content box

提交回复
热议问题