+ 2
HTML: <button class="myButton"></button> CSS: .myButton { width: 50px; height: 50px; } ^That should do the trick for you. You just want to apply CSS styling to it like most elements. You can do inline styling also, but I never recommend doing that. <button style="height: 50px; width: 50px;"></button>
29th Mar 2018, 4:49 PM
Fata1 Err0r
Fata1 Err0r - avatar