? , , , .
.parent {
position: relative;
}
.child {
position: absolute;
right: 0;
bottom: 0;
}
EDIT:
, . , CodePen, CSS3 , . , .
... , IE10 + . , , , , .
, Autoprefixer CodePen, column-count, . CSS Tricks .
CodePen:
<div class="parent">
... Text ...
<div class="child">
... Another Text ...
</div>
</div>
.parent {
background: red;
border: 3px solid #000;
column-count: 2;
}
.child {
background: orange;
border: 1px solid black;
}