+ 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>