JSFiddle - React, Tailwind, and code Playground

by Jofferson Tiquez

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.css">
<section>
    <div class="container">
        <div class="row">
            <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
                <label>Scroll down to see other contents.</label>
                <br>
                <label>Resize window to see effect.</label>
            </div>
        </div>
    </div>
</section>
<label>Content for testing</label>
<br>
<label>Content for testing</label>
<br>
<label>Content for testing</label>
<br>
<label>Content for testing</label>
<br>

CSS

.row {
    background-color: #ccc;
}

JavaScript

var screenHeight = $(window).height();
var row = $('.row');

row.css({
    'height': screenHeight + 'px',
});

$(window).resize(function () {
    screenHeight = $(window).height();
    row.css({
        'height': screenHeight + 'px',
    });
});