Bootstrap 4 - center text with button label

后端 未结 1 932
猫巷女王i
猫巷女王i 2021-01-28 00:55

I want to achieve a very simple goal: I have a line - text aligned to left and a button to right. And I want the text to be vertically aligned to button\'s label. I tried to pla

相关标签:
1条回答
  • 2021-01-28 01:16

    Bootstrap 4 is based on flexbox, so already has classes for applying those alignment utilities. d-flex makes the container a flex container, and align-items-center does the vertical alignment. Try something like:

    <div class="d-flex align-items-center">
        <span>
            This text should match the "Submit" text
        </span>
        <button type="button" class="btn btn-secondary ml-auto">Submit</button>
    </div>
    
    0 讨论(0)
提交回复
热议问题