Can I use DIV Class and ID together in CSS? For example:
<div class="x" id="y">
--
</div>
| show 2 more comments |
|
Yes, yes you can.
Similarly:
Incidentally this might be useful in some use cases (wherein classes are used to represent some form of event or interaction), but for the most part it's not necessarily that useful, since |
|||||||
|
|
That's HTML, but yes, you can bang pretty much any selectors you like together.
(And the HTML is fine too) |
|||
|
|
You can also use as many classes as needed on a tag, but an id must be unique to the document. Also be careful of using too many divs, when another more semantic tag can do the job.
|
||||
|
|
|
Yes, why not? Then CSS that applies to class "x" AND CSS that applies to ID "y" applies to the div. |
|||
|
|
|
If you want to target a specific class and ID in CSS, then use a format like |
|||
|
|
|
#y.x should work. And it's convenient too. You can make a page with different kinds of output. You can give a certain element an id, but give it different classes depending on the look you want. |
|||
|
|
|
Yes you can. You just need to understand what they are for, the This excellent tutorial helped me with that: The Difference Between ID and Class Though it's not an exact answer to your question I'm sure it will help you a lot! Good luck! EDIT: Reading your question, I just want to clarify that:
And that if you want to "use them" in CSS for styling purposes you should do as David Says: |
|||
|
|
|
Of course you can. |
|||
code markdown. – zzzzBov Dec 6 '10 at 22:51classand anidon the same element. – matthewpavkov Dec 6 '10 at 22:51<div class="x z b">). what you cannot do is to use more than one id per element (i.e.<div id="y w">) – Lucius Dec 6 '10 at 22:56