I have a link that I want to center vertically in a class .wellfrom the bootstrap framework and use the class btn btn-dangerin the anchor tag. Here's a snapshot below. I tried to use vertical-align:middle;, but this does not seem to work. You can see that the space on the well is not even above and below.

Here is the HTML:
<div class="well">
<%= link_to "Remove", thing, method: :delete, style: "font-size: 11px; float:right; ", :class => 'btn btn-danger'%>
</div>
source
share