元素具有多個class
屬性時會發生什麼?HTML中的多個類屬性
<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(); ?>>
至少在webkit和Firefox中,這是正確的,第一個類被尊重,隨後被丟棄。 [小提琴](http://jsfiddle.net/sBp5Z/) – steveax 2012-03-01 07:46:06