How can I prevent the image in this row from getting a margin at the bottom when I resize the window?
<div class="row-fluid">
<div class="span2">
<img src="https://s3.amazonaws.com/media.jetstrap.com/SLgRUEHSyGwQVfG4x6ed_curso_adm.jpg">
</div>
<div class="span10">
<h3>
Title
</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</div>
<div class="span3" style="display: none;">
<h3>
Span 4
</h3>
<p>
Content
</p>
</div>
<div class="span3" style="display: none;">
<h3>
Span 3
</h3>
<p>
Content here
</p>
</div>
</div>
If you need further assistance, please refer to the following fiddle: http://jsfiddle.net/cbacelar/Fzfb6/
Thank you.