I am facing an issue with my buttons that are meant to look uniform.
One button contains the word "Register" and the other contains "Details". Due to this, the button with the longer word appears bigger, which is not desired!
My goal is to make both buttons look the same size even though the words have different lengths.
I have attempted to use padding to adjust the size, but using "width" did not produce the desired result.
Any assistance in resolving this matter would be greatly appreciated!
CSS:
.startLink {
padding: 20px;
padding-left: 90px;
padding-right: 90px;
color: white;
background: #8d68dc;
border-radius: 5px;
font-size: 16px;
box-shadow: 0px 5px 10px #000;
webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
-ms-transition: all 200ms ease-in;
transition: all 200ms ease-in;;
}
HTML:
<a href="index.php?register" class="startLink">Register</a>
<a href="index.php?details" class="startLink">Details</a>