I am trying to vertically align the text (pulled to the left) and the button (pulled to the right) inside Bootstrap 3 alert . Anyway:
+
So far I have been as follows ( Bootply ):
<div class="alert alert-info" style="overflow:hidden"> <p class="pull-left">Some text</p> <button class="btn btn-sm btn-default pull-right">A button</button> </div>
The button is fully aligned (this was my first problem, solved here ), but now the text is not in the center.
I appreciate your help!
source share