0
Can a tag have two or more classes?
I was wondering if I could add two or more classes to a tag, as in: <p class="underscore" class="bluebg">
2 ответов
+ 3
Tags can have as many classes as you want, but you need to use an unique 'class' attribute:
<p class="underscore bluebg validclassname separatedbyspaces">
0
Thank you!