How to edit the size of the submit button on a form?

后端 未结 10 837
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-24 05:13

Hi I don\'t want an image for my submit button so I have gone with the default submit button but I want to edit its width and height. How do I do that?



        
10条回答
  •  梦毁少年i
    2020-12-24 05:37

    Change height using:

    input[type=submit] {
      border: none; /*rewriting standard style, it is necessary to be able to change the size*/
      height: 100px;
      width: 200px
    }
    

提交回复
热议问题