I have a two column section, one side contains a video, the other contains text.
They are both 50% width and I want them to have equal height as they respond down together
section {
width: 1000px;
}
.half {
width: 50%;
position: relative;
float: left;
}
.grey {
background: #f5f5f5;
}
<section>
<div class="half grey one">
<p>text goes here.</p>
</div>
<div class="half">
<iframe src="https://www.youtube.com/embed/8kyWDhB_QeI" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</section>
The text in the left column also needs to always stay central, horizontally and vertically.