Hi, I have this code, could I wrap the two class tags together? How would I go about doing this? <a href="#" class="white" class="TabbedPanelsTab" tabindex="0">FAQ</a> HTML: Thankyou for your help
You can have two classes, but a single class attribute: <a href="#" class="white TabbedPanelsTab" tabindex="0">FAQ</a> Code (markup):
adding a space between two classes in the same attrib would do. but also be aware that if there are conflicting properties of the class, the class written at the end will have the resulting change. just for ur info.
zeegal has already given the correct answer. That way is possible, browsers read it and it does not break validation either.