I'm working on a basic flexbox layout that looks something like this:
html,body {
margin:0;
padding:0;
}
body {
height:100%;
width:100%;
}
.panel-grid
{
-webkit-align-items: flex-start;
align-items: flex-start;
margin-bottom:30px;
display:flex;
justify-content:space-between;
}
#section-163 {
width:calc(61.8034% - ( 0.38196600790794 * 30px ) );
align-self:auto;
}
#section-260
{
width:calc(38.1966% - ( 0.61803399209206 * 30px ) );
align-self:auto;
}
.myimage {
object-fit:cover;
width:100%;
height:100%;
}
<div class="panel-grid panel-no-style">
<div id="section-163" class="panel-grid-cell">
<div class="rty-panel widget widget_image-widget panel-first-child panel-last-child" style="height: 100%;">
<div class="rty-widget-image-widget rty-widget-image-widget-base" style="height: 100%;">
<img class="myimage" src="https://dummyimage.com/1600x900/000/fff">
</div>
</div>
</div>
<div id="section-260" class="panel-grid-cell">
<div class="rty-panel widget widget_image-widget panel-first-child panel-last-child" style="height: 100%;">
<div class="rty-widget-image-widget rty-widget-image-widget-base" style="height: 100%;">
<img class="myimage" src="https://dummyimage.com/500x600/000/fff">
</div>
</div>
</div>
</div>
I'm attempting to use object-fit to crop the images so that their heights match. Can anyone point out where I might be making a mistake?