+ 1
How can I increase the height of button in html???
3 Respuestas
+ 5
you can use height property along with id or class
+ 1
button {
height: 100px;
}
^There ya go. Replace 'button' with the ID/Class, or if you wish to apply to all buttons leave it alone.
+ 1
You can do it directly adding an attribute property called height to your button element or you could css like jacob is mentioning :)
If you want to adjust the height in a dynamic way you can use javascript/jquery