V
V
Vladislav Pal2020-04-19 18:53:16
Bootstrap
Vladislav Pal, 2020-04-19 18:53:16

Why doesn't align-self work in Bootstrap 4?

It does not work for me align-selfwhen using Bootstrap 4. It seems that I specified everything correctly, but it does not work. Where is the mistake?

//Хотел сделать кнопки в виде ступенек
<div class="border border-info flex-container" style="height: 8rem;">
<div class="d-flex justify-content-between">
  <div class="d-flex align-self-start">
    <button class="btn btn-outline-success">Qwerty</button>
   </div> 
  <div class="d-flex align-self-center">
    <button class="btn btn-outline-success">Qwerty</button>
  </div>	
  <div class="d-flex align-self-end">
  <button class="btn btn-outline-success">Qwerty</button>
  </div>
</div>
</div>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Aleksander911, 2020-04-19
@Aleksander911

Set this height: 8rem to Either style the d-flex justify-content-between
<div class="d-flex justify-content-between">

.d-flex.justify-content-between {
    height: 100%;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question