I am tying to apply an offset to a column in twitters bootstrap framework using this code
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</div>
</div>
</div>
Unfortunately the column is not getting affected by the offset class. Every other class is working.
What am I doing wrong?