Home › Forums › CSS › Why we use #container div? › Re: Why we use #container div?
November 10, 2009 at 10:46 pm
#60451
Member
The Div container is a Box with pixels, where you group code to have better control of the programing Style
# is the ID
#theme { background: #fff; color:black; width: 960px; height:160px;}
<div id="theme">Calls the properties from that #container</div>
Hope that helps! :D