Using responsive twitter bootstrap.
I have a page with 3 span 3's:
<body>
<div id="wrap">
<div class="container">
<div class="row">
<div class="span3">
<img src="~/Images/logo.png" alt="Logo" />
<br /><br /></div>
<div class="span3 cfnav">
<ul class="nav nav-tabs nav-stacked">
<li><a href="#">Home</a></li>
<li><a href="#">Info1</a></li>
<li><a href="#">Info2</a></li>
<li><a href="#">Info3</a></li>
<li><a href="#">Info4</a></li>
</ul>
</div>
<div class="span6" style="background-color:green;"><br /><br /></div>
</div></div></div></body>
The logo resizes automatically depending on the responsive width of the page. However the text stays the same size - overspilling its DIV at bigger widths.
Is there any way to set the text size to change dynamically - as the image stretches to stay within the span3 div? (without having to manually set the text size at each media query width)