Adding more than one class html -


this question has answer here:

is possible add more 1 class in html? here i've tried:

<a href="#" class="class1" class="class2">my text</a> 

thanks! :)

yes, possible, can declare class attribute once per html element. separate classes want apply space.

<a href="#" class="class1 class2">my text</a> 

if declare class attribute more once, definitions beyond first ignored, in code .class2 not applied link.


Comments

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -