I am facing difficulty in vertically aligning text within a Bootstrap (3) <a>
element while it works fine in a <button>
Here is the HTML :
<button class="btn">some text<span class="glyphicon glyphicon-play pull-right"></span></button>
</br>
</br>
</br>
<a href="#" class="btn">some text<span class="glyphicon glyphicon-play pull-right"></span></a>
The CSS code is as follows:
.btn {
width: 315px;
height: 40px;
background-color: #ff38a4;
color: #fff;
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: left;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 4px 8px;
font-size: 14px;
line-height: 1.42857143;
border-radius: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.5);
-moz-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.5);
box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.5);
}
Observing the output :
https://i.sstatic.net/GYcf9.png
Here is the codepen link illustrating the issue : http://codepen.io/anon/pen/vyOaao
Is there a way to vertically align the text and icon centrally using an <a>
tag?