Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Why we use #container div? Re: Why we use #container div?

#60451
xagosto
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