0

I'm trying to position a div with a progress bar to the bottom of my flexbox but everything i find on stackoverflow doesnt work or is not applied as it need to be...

tried absolute to the bottom, auto-margin, flex-grow and none of them has been fixing the problem!

  <div class="row statut-plan-action">
    <div class="col" *ngFor="let statut of details.statuts">
      <div>{{statut.descriptionCourte}}</div>
      <div class="fill-space">
        <app-etape-plan-action-statut [etape]="obtenirEtape(statut.code)" [descriptionStatut]="statut.descriptionCourte"></app-etape-plan-action-statut>
      </div>


      <ngb-progressbar class="progression" type="success" [value]="obtenirPourcentageCompletion()"></ngb-progressbar>
    </div>
  </div>

so i'm trying to put the ngb-progressbar to the bottom of my div, but i didnt success. i've tried by putting it in a div and it didnt work either

here is the last try i've did in css

.statut-plan-action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.col {
  padding-left: 0;
  padding-right: 0;
}

.fill-space {
  flex-grow: 1;
}

.progression {
  margin-top: auto;
}

* EDIT *

Image of the problem enter image description here

Vince
  • 1,279
  • 2
  • 20
  • 40

0 Answers0