Everyone who programs css has his own program style. Tabs, spaces, new lines etc. Some remarkable script styles in a short list:
Style one
body {
background: url('images/pagebg.gif') repeat-y;
background-position: center;
padding: 0px 0px 35px 0px;
}
Style two
body { background: url('images/pagebg.gif') repeat-y; background-position: center; padding: 0px 0px 35px 0px; }
Style three
body
{
background: url('images/pagebg.gif') repeat-y;
background-position: center;
padding: 0px 0px 35px 0px;
}
Wich style do you prefer or do you have an other style?





Comments (1)
Crispijn says:
I’ll go for option one… It has got the best overview and more structure in less space…