In my code snippet below (this is just a prototype, in the actual application everything is different but follows a similar structure):
<body>
<div class="row">
<div class="col-3 d-none d-sm-block">
<div class="h-100" style="background:red">
123123
</div>
</div>
<div class="col-3 d-none d-sm-block">
asdasdasd <br> asdasdasd <br> asdasdasd
</div>
</div>
</body>
Check out the sample here to see it live.
I am currently using Bootstrap 4 for this project.
The issue arises in Safari (v10.1) where the layout does not display correctly: https://i.sstatic.net/7HSbF.jpg
Can anyone assist with identifying what might be wrong? Is there a way to adjust the styling without having to redo the entire DOM structure? The aim is to ensure that the height matches the display in Chrome.