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