How to align elements in ionic 2 using the ion row and ion collector?

I am trying to get a list similar to the one shown here: http://arunsfolio.com/wp-content/uploads/2015/04/list-petro.png

I'm not sure that I have something missing.

This is the code:

 <ion-row>

    <ion-col width-40>
        <h4>Esso</h4>
        <p>Ungrester - 54</p>
        <p>84859 - munch</p>
    </ion-col>
    <ion-col width-40>
        <div class="priceStyle">
            <div class="priceChild">
                $123
            </div>

        </div>
    </ion-col>
    <ion-col width-10>
       <div>
        12KM
      </div>
    </ion-col>
</ion-row>


SCSS:
.priceStyle {
        background-color: lightblue;
        display: flex;
        flex-direction: column;

        width: 100px; 
        height: 50px; 
        border-radius: 2px;


    }

.priceChild {
        font-weight: bold;
        font-size: 1.5em;
        color: white;
        margin: 0;
        flex: 1;
        justify-content: flex-end;
        align-items: flex-end;
    }

My code does not align the elements in the center.

Here's how it displays right now:

enter image description here Appreciate your help.

Thank.

+4
source share
1 answer

You can use the properties:

display: flex;
justify-content: center;

on <ion-row>.

+7
source

Source: https://habr.com/ru/post/1665227/


All Articles