<cufontext style="color:red">Home</cufontext>
我想要&#39; Home&#39;的文字颜色。变红了
我也试过了<cufontext style="color:red !important">Home</cufontext>
没有运气..
答案 0 :(得分:2)
您是否考虑过将课程用作cufon选择器? HTML:
<p class='cufon red'>Hello world</p>
的CSS:
.red
{
color:red;
}
和JS:
Cufon.replace('.cufon');