I know that in CSS Classes are typically resevered for elements that may be used multiple times on a page and IDs are for single-use elements. That being said, I have noticed where many people seem to call container/wrapper elements Classes instead of IDs eventhough their only used once on a page. Why is this? What am I missing?
For example: If you inspect the elements of this very page you'll find that the <body> tag is listed as a Class, as is the footwrap <div>. Most of the other elements are listed as IDs.
Thanks in advance.