html change size of button code example
Example 1: button size html
<button style="height:40px; width:40px;">Press Me</button>
Example 2: change button size css
.test{
height:200px;
width:200px;
}
Example 3: html button size
transform: scale(4); /* This will make the component 4 times bigger */