Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to assign multiple class to a single HTML container?

<article class="column, wrapper"> 
share|improve this question
I did that but i still have problems with my code – ARGO Jan 4 '12 at 5:04
What problem do you have now? Any way that was the solution to this problem. Any other problem may depend on several factors. – Aurelio De Rosa Jan 4 '12 at 5:05
Though this is doable, I usually use nested containers with CSS inheritance. It is much prettier, and usually more useful. – Jonathan Henson Jan 4 '12 at 5:12

2 Answers

Just remove the comma like this:

<article class="column wrapper"> 
share|improve this answer

From the standard

7.5.2 Element identifiers: the id and class attributes

Attribute definitions

id = name [CS]
This attribute assigns a name to an element. This name must be unique in a document.

class = cdata-list [CS]
This attribute assigns a class name or set of class names to an element. Any number of elements may be assigned the same class name or names. Multiple class names must be separated by white space characters.

Yes, just put a space between them.

<article class="column wrapper">

Of course, there are many things you can do with CSS inheritance. Just google it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.