The last column of the first row is wrapped to the next line when viewing in Safari, and some other iOS based browsers.
Safari:
In case you are using display flex with flex-wrap i solved it applying a hight order to the before and after pseudo-elements of the row, so they position as the last elements.
.row.flex_class {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.row.flex_class::before, .row.flex_class::after {
order: 10;
}