Answer the question
In order to leave comments, you need to log in
Why doesn't align-self work in Bootstrap 4?
It does not work for me align-self
when 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
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 questionAsk a Question
731 491 924 answers to any question