I have been looking at some tutorials. and some recommend the usual 'split
into basic.css, typography.css, layout.css, colors.css, etc', but I can see
a few peoples' arguments that to make a change for 1 thing, you might be
looking at changing alot of files. For example, when you want do change
layout for the .posts class,

#Method1 - have to change across 3 files
//color.css
.posts{ color: orange; background-color: black;}
//typography.css
.posts{ font-size: 1em; font-family:Verdana, Arial, Helvetica, sans-serif; }
//layout.css
.posts{ float:left; width: 200px; }

 #Method2 - have to change 1 files, organized
/*Colors */
.posts{ color: orange; background-color: black;}
/*Typography */
.posts{ font-size: 1em; font-family:Verdana, Arial, Helvetica, sans-serif; }
/*Layout */
.posts{ float:left; width: 200px; }

 #Method3 - have to change 1 files, un-organized
.posts{
color: orange; background-color: black;
font-size: 1em; font-family:Verdana, Arial, Helvetica, sans-serif;
float:left; width: 200px;
}

I was wondering what is best, for a quick job, i'd probably do #3; but for a
big job I wasn't sure what people have figured is best?

Thanks,
Ari
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to