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?

Related Posts

Comments (1)

avatar

Crispijn says:

I’ll go for option one… It has got the best overview and more structure in less space…

Leave a Comment

Get your own Gravatar!
Your email will never be published!

Notify me of followup comments via e-mail

Top of Page