JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
   
    <div class="row">
        <div class="col-xs-8 content">Content goes here...</div>
        <div class="col-xs-3 col-xs-offset-1">
            <div class="fixed">
                <img class="img-responsive" src="http://placekitten.com/300/200">
                Some links go here.
            </div>
        </div>
    </div>
</div>

CSS

@import url('http://getbootstrap.com/dist/css/bootstrap.css');
 .content {
    margin-top: 150px;
    background-color: #a9a8a8;
    min-height: 5500px;
}

.container {
    background-color: #f2f2f2;
}

.fixed {
    position: fixed;
    top: 150px;
}