Currently implementing a fluid layout design using Twitter's Bootstrap. Below is an excerpt from my code:
<div class="hero-unit" style="background-image:url('images/ball on sand.JPG'); background-size:100%;">
<h1>Pelican Volleyball</h1>
<p>The northshore's leading outdoor volleyball organization</p>
<p><a href="index.php?p=about" class="btn btn-primary btn-large">Learn more »</a></p>
</div>
As I resize the window, the image "ball on sand" tends to repeat when it becomes too narrow. My goal is for the image height to expand to fit snugly within the hero-unit div. How can this be achieved?