I was reading here -- CSS vertical-align: middle not working that if the "vertical-align:middle;" property isn't working in CSS, its because the parent container does not have a "display: table;" specified. So I gave this a try in my parent DIV
.btn
{
position: relative;
margin-bottom:20px;
padding: 0 10px;
text-align: left;
font-size: 16px;
color: #333;
background:gray;
display: table;
vertical-align: middle;
}
but the child element
<span>Start</span>
still aligns at the bottom -- https://jsfiddle.net/xwdnvcy5/35/ . How do I make my span element align vertically in the middle?