.row {
background: green;
color: white;
margin-top: 20px;
}
.col2 {
border: 3px solid black;
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: flex-end;
}
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<div class="container">
<div class="row">
<div class="col-6 col1">
Text
</div>
<div class="col-6 col2">
<p>
Home
</p>
<p>
Lorem ipsum dolor sit
</p>
</div>
</div>
</div>
jsfiddle: https://jsfiddle.net/ez68c5mr/
align-content: Trying to justify the col-2 line to the right in IE 11, but align-items: flex-end is not achieving the desired effect.
aiming for alignment like this:
Home
Lorem ipsum dolor sit
Desired alignment:
Home
Lorem ipsum dolor sit