Ok so I have a basic bootstrap layout
<div classs="row-fluid">
<div class="span12" style="background:black; padding:25px 0px;">content content</div>
</div>
<div class="span4 offset2">
<p>blah blah blah this is a test blah blah blah this is a testblah blah blah this is a test <br />
blah blah blah this is a testblah blah blah this is a testblah blah blah this is a test</p>
</div>
<div class="span12" style="blue; padding:25px 0px;">content content</div>
as I minimize the window the <p>
will shrink in width but it will extend the paragraph down so it gets thinner and longer as the window minimizes it pushes ALL the content like the span12
at the bottom down. I want the <p>
to NOT get longer as the window minimizes but maybe smaller or something. I tried removing the margin and padding from it but when I do that it will keep the content in the bottom of the <p>
from being pushed down but the <p>
literally still extends under the bottom span12
and creates a margin all the way at the bottom of the page. Can anyone tell me whats going on please.
UPDATE:
Here is my fiddle: http://jsfiddle.net/Lucaz5520/ZTgGX/ if you look at the paragraph as you minimize the window it will get thinner and push all the content below it down