Thread: Learning CSS
View Single Post
  #7  
Old 09-20-2011, 09:08 PM
Inf3rnal's Avatar
Inf3rnal Inf3rnal is offline
Member
 
Join Date: Mar 2011
Location: Florida
Posts: 108
Gender: Male
Credits: 20,049
Inf3rnal is on a distinguished road
Default

Lets see.

CSS Files do not have headers. So it just looks like this:

id { stuffhere }
id2 { stuffhere }
id3 { stuffhere }

or the way I format

id {
stuffhere
}
id2 {
stuffhere
}
id3 {
stuffhere
}

HTML Files have tags such as <!doctype html>, <head>, <body>, <div>, etc.

Tags do not belong in .css files.
Reply With Quote