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
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