Bootstrap btn-link vertical alignment slightly out

Jonathan

When placing a Bootstrap 3 button with class btn-link in a block of text, the vertical alignment seems to be out by a few pixels:

<div>Foo<button class="btn btn-link">Button</button>Bar</div>

enter image description here

Fiddle

How can I fix this? Removing the padding from the button improves the issue somewhat, but I'm still seeing a discrepancy of a few pixels.

Josh Crozier

The best way to fix this would be to wrap the text nodes with <span> elements and then modify the vertical-align property:

Updated Example

div span {
    vertical-align: middle;
}
<div>
    <span>Foo</span>
    <button class="btn btn-link">Button</button>
    <span>Bar</span>
</div>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

Bootstrap btn group vertical text alignment

Correcting vertical alignment of navbar link in Bootstrap 4

Vertical alignment in Bootstrap 4

Vertical alignment in bootstrap header

Vertical alignment in bootstrap 4

Bootstrap 5 Vertical Alignment Bottom

Vertical alignment of columns in bootstrap 4

vertical alignment within bootstrap column

Vertical alignment within a Bootstrap 4 column

Bootstrap-based vertical tab: alignment issues

Bootstrap 4 Center Vertical and Horizontal Alignment

vertical alignment inside div column with bootstrap 5

Bootstrap 3: vertical alignment of inline radios

Problems with vertical alignment of the blocks in a row with Bootstrap 3

Bootstrap vertical alignment with column wrapping and different height

React Bootstrap: Vertical alignment of row's columns?

Column Content Vertical Alignment - Bootstrap 4

Vertical alignment in Bootstrap 4 using flexbox

Bootstrap 4 vertical alignment of progress bar

Bootstrap grid: vertical alignment issue in columns

Bootstrap 4: two btn-group-vertical side by side

Bootstrap v4 - btn-block vertical spacing?

Bootstrap full width buttons .btn-group-vertical

Bootstrap5 input-group with btn-group-vertical

override bootstrap 4 .btn-link with underline transition

Vertical alignment of form-controls with wrapping labels in a row with Bootstrap 4

Vertical alignment of radio and checkbox with bootstrap 4 beta 3

Vertical alignment of Raphael canvas broken in Twitter bootstrap tab

Bootstrap form-horizontal vertical alignment of checkboxes without label text