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>?
4 odpowiedzi
+ 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.
+ 1
Use CSS for designing
+ 1
thanks. that helped