0
How can i make the button bigger or that the text can be in the button
The reset button is too small https://sololearn.com/compiler-playground/W8BJEoy48w0k/?ref=app
3 ответов
+ 2
In your css file, you can either adjust the width of your button to give enough room for the words horizontally(150 looks good), or you can remove your defined height and it will wrap the text vertically
+ 1
Thx both Chris Coder and Heather Ambrosio
0
Simple increase the width of the button via CSS.
button {
width:100px;
}