Can I use DIV Class and ID together in CSS? For example:
--
Yes, in one single division you can use both but it's not very common. While styling you will call both so it will cause some ambiguity if you don't properly choose "x" and "y".
Use #
for ID and .
for class. And for overall division you will either do separate styling or write: #x .y
for styling purposes.