是否可以在html中添加多个类? 这是我尝试过的:
<a href="#" class="class1" class="class2">My Text</a>
谢谢! :)
答案 0 :(得分:7)
是的,这是可能的,但您只能为每个HTML元素声明一次class
属性。只需用空格分隔要应用的类。
<a href="#" class="class1 class2">My Text</a>
如果您多次声明类属性,则会忽略第一个以外的所有定义,因此代码.class2
中的定义将不会应用于您的链接。
答案 1 :(得分:0)
是的,你当然可以!但是你在一个类属性中完成所有这些:
<a href="#" class="class1 class2">My Text</a>
答案 2 :(得分:0)
您可以阅读全局类属性here。
类全局属性是以空格分隔的类的列表 元素。
使用单个类属性并使用空格分隔其他类。
<a href="#" class="class1 class2 class3">My Text</a>