Currently, I'm attempting to center my <a>
tag both vertically and horizontally within the div.
This is what I currently have in place:
#button{
text-align:center;
position:relative;
border-radius:4px;
height:27px;
width:110px;
margin-top:5px;
background-color:#6f97b6;
background-image:-webkit-linear-gradient(top, #6f97b6, #3f729b);
}
#text{
color:#fff;
font-size:14px;
font-weight:700;
line-height:1em;
cursor:pointer;
}
Then, within my html file:
<div id="button">
<a id="text">I am here!</a>
</div>