My goal was to keep the button size fixed, even as the text on it grows.
This is the current code I am using:
.button {
border: none;
color: white;
padding: 10px 50px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 1px 1px;
transition-duration: 2s;
cursor: pointer;
}
.button4 {
background-color: #428BCA;
color: white;
height: auto;
width: auto;
}
.button4:hover {
background-color: #C0C0C0;
}
<button class="button button4">Simplify!
<br>Great Work!</button>