Having trouble with cross-browser testing on Safari due to additional properties added in Bootstrap 4 for rows causing the grid format to appear distorted. I want the layout to look exactly the same as it does in Chrome or Firefox. Despite trying various fixes for this issue, none of them seem to work for me.
.row::after, .row::before
display: inline-block!important;
width:0px;
height:0px;
The following Bootstrap 4 properties are not supported in Safari:
.row
display: -ms-flexbox; //not supported in Safari
display: flex; //not supported in Safari
-ms-flex-wrap: wrap; //not supported in Safari
flex-wrap: wrap; //not supported in Safari
margin-right: -15px;
margin-left: -15px;
.col-6
-ms-flex: 0 0 50%; //not supported in Safari
flex: 0 0 50%; //not supported in Safari
max-width: 50%; //not supported in Safari