how to make a sumbit button bigger? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how to make a sumbit button bigger?

im making small website and i had put some buttons there. but every time i go to the website from mobile device the buttons look really small. really really small. need help. can i use <h1></h1>?

7th Oct 2020, 5:16 AM
Zihan Sabah
Zihan Sabah - avatar
3 Answers
+ 3
Give that button a class or id to change its styles in css <button id="submit-btn"> SUBMIT </button> In css: /* Use .submit-btn ( . instead of # ) if you gave a class instead of id */ #submit-btn { width: ; height: ; padding: ; font-size: ; } Play around with these css properties.
7th Oct 2020, 5:20 AM
maf
maf - avatar
+ 1
Use CSS for designing
7th Oct 2020, 5:57 AM
Ayush Kumar
Ayush Kumar - avatar
+ 1
thanks. that helped
7th Oct 2020, 9:34 AM
Zihan Sabah
Zihan Sabah - avatar