Bootstrap 3 - Vertically Align Glyphicon
by ramnathv
HTML
<link rel="stylesheet" href="http://getbootstrap.com/dist/css/bootstrap.css">
<script src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css">
<div class="container">
<div class="row">
<div class="col-xs-4 col-sm-2 glyph-Column">
<span class="glyphicon glyphicon-circle-arrow-up glyphicon-large"></span>
</div>
</div>
</div>
<!-- Post Info -->
<div style='position:fixed;bottom:0;left:0;
background:lightgray;width:100%;'>
About this SO Question: <a href='http://stackoverflow.com/q/22719315/1366033'>Vertical align glyphicon in bootstrap 3</a><br/>
Fork This Skeleton Here: <a href='http://jsfiddle.net/KyleMit/kcpma/'>Bootstrap 3 Skeleton</a><br/>
<div>
CSS
.glyphicon-large {
min-height: 260px;
line-height: 260px;
font-size: 35px;
width: 1em;
display: block;
margin: -0.5em auto 0px;
}
.glyph-Column {
border: 1px solid grey;
}