HTML 中的多个类属性
当元素具有多个属性时会发生什么情况?class
<div id="test" class="one two three" class="four">
我正在尝试在WordPress插件的输出中添加一个类,但函数本身正在创建整个部分post_class();
class="one two three"
它等同于 ?还是第一个或第二个赢了?还是未定义的行为,在这种情况下,主要浏览器会做什么?class="one two three four"
如果您知道将类添加到此代码段(WordPress插件)的正确方法,那么这也将不胜感激!
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>