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

后端 未结 10 816
佛祖请我去吃肉
佛祖请我去吃肉 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条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-24 05:48

    You can change height and width with css:

    #search {
         height: 100px;
         width: 400px;
    }
    

    It's worth pointing out that safari on OSX ignores most input button styles, however.

提交回复
热议问题