JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<section id="browse" class="browse">
    <div class="container">
        <div class="row">
            <div class="col-xs-5 textContainer">
                <h3 class="text-left">Link up with other gamers all over the world who share the same tastes in games.</h3>
            </div>
            <div class="col-xs-1"></div>
            <div class="col-xs-6 animation_container">
                <img id="animation_img1" class="animation_img animation_img1 img-responsive" src="http://lorempixel.com/output/abstract-q-c-640-480-7.jpg"/>
            </div>
        </div>
    </div>
</section>

CSS

.browse .container, .blind_dating .container { padding-bottom: 0; }
.animation_container { position: relative; }
.browse .animation_container { height: 430px; }



/* New classes */
.browse .textContainer { 
    height: 345px; 
    line-height: 340px;
}

.textContainer h3 {
    vertical-align: middle;
    display: inline-block;
}

JavaScript

7