id or class?
id or class?
Out of context: Reply #3
- Started
- Last post
- 6 Responses
- neverblink0
quick anwser:
You can use classes or id's inside eachother. But there can only be ONE element with a specific ID, where there can be MANY elements with the same CLASS.example:
<div id="container">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
</div>