Hi, I do not understand why my #content background color does not fill the entire area. I remove the height thinking that it should fill it and it does not.
My question is what do I have to do to make my #content background to fill the entire area and not leave a gap. I am just trying to learn css.
thanks
My question is what do I have to do to make my #content background to fill the entire area and not leave a gap. I am just trying to learn css.
thanks
CSS:
<DOCTYPE html5>
<html>
<head>
<title>get your phil</title>
<style>
body,h1,h2,h3,h4,h5,h6,span,ul,li {margin:0;padding:0;}
body {font-family:arial;line-height:180%;text-align:center;}
#container{width:700px;text-align:left;margin:0 auto;}
#header {height:150px;background-color:ED146F;text-transform:uppercase;text-align:right;}
#header h1 {font-size:70px;color:yellow;}
#header h2 {font-size:30px;color:white;}
#content {background-color:413D3D;color:white;padding:40px;text-align:justify;}
#content ul {list-style:none;}
#content li {width:300px;border:1px solid white;float:right;}
#content li h3 {text-transform:uppercase;}
#content li h4 {text-transform:capitalize;font-style:italic;}
#content li h5 {text-transform:uppercase;color:ED146F;}
#footer{clear:both;height:150px;background-color:ED146F;text-transform:uppercase;text-align:right;color:yellow;}
#footer span {color:white;}
</style>
</head>
<body>
<div id="container">
<div id="header">
<h1>get your phil</h1>
<h2>dinner <span>& </span> concert packages </h2>
</div>
<div id="content">
<p class="dropcap">join us!
We've partnered with Downtown's best restaurants for an exclusice offer! Get a delicious prix fixe dinner followed by a concert featuring the world-class
<span>los angeles philharmonic at walt disney concert hall</span> all for a special low price</p>
<ul>
<li>
<h3>chaya downtown</h4>
<h4>debussy & bartok</h5>
<h5>oct 18</h6>
</li>
<li>
<h3>border grill downtown la</h3>
<h4>salonen & sibelius</h4>
<h5>oct 25</h5>
</li>
<li>
<h3>le ka restaurant & lounge</h3>
<h4>tavey & shostakovich</h4>
<h5>nov 8</h5>
</li>
<li>
<h3>first & hope</h3>
<h4>downtown supper club Bruckners eighth</h4>
<h5>nov 15</h5>
</li>
<li>
<h3>blue cow kitchen</h3>
<h4>bach, schumann and more</h4>
<h5>oct 30</h5>
</li>
<li>
<h3>get your tickets now - packages sart at just $92!</h3>
<h5>LAPhil.com/BetYourPHil</h5>
</li>
</ul>
</div>
<div id="footer">
<h1>walt disney concert hall 10<span>th anniversary</span></h1>
</div>
</div>
</body>
</html>