Add padding to HTML text input field

前端 未结 6 872
悲哀的现实
悲哀的现实 2021-02-01 12:18

I want to add some space to the right of an so that there\'s some empty space on the right of the field.

So, instead of

6条回答
  •  臣服心动
    2021-02-01 12:46

    you can solve this, taking the input tag inside a div, then put the padding property on div tag. This work's for me...

    Like this:

    and css:

    .paded{
        padding-right: 20px;
    }
    

提交回复
热议问题