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
Post a Comment