beginCss wrote:
Quote:
Thanks Mark for the reply.
I understand hex colors, the problem is that I can select or "declare" a
background color for the entire page.
Only the block elements as you pointed out have color and each element block
is separated by white space. |
I'm not really understanding your question correctly.
Are you saying you want the whole page to be blue and not have a white
box with text in it with a blue border?
If so the delete background: #FFFFFF; from the below css.
..oneColElsCtr #container {
width: 46em;
background: #FFFFFF;
margin: 0 auto; /* the auto margins (in conjunction with a width)
center the
page */
border: 1px solid #000000;
text-align: left; /* this overrides the text-align: center on the body
element. */
}