我有这个DOM类,我添加到jqMath表达式来改变我使用jqmath和相应的CSS编写的等式的部分颜色:
$d/\dx[x^2]$
事情是颜色通常会如预期的那样变化,但如果我在例如这样的等式中有一个除法,则不是这种情况:\cl "myclass"
。在这种情况下,颜色不适用于除法(既不是分子也不是分母)。据我所知,在jqmath中添加一个类,我必须使用这个#myid {
align-text: left;
}
.myclass {
color: blue;
}
.myclass:active {
font-weight: bold;
}
命令。
修改 这是我的css:
<body>
<div>
<p id='myid' >$\cl 'myclass' {d/\dx[x]}$</p>
<br>
</div>
</body>
和html:
<animation-list android:oneshot="false" xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/color1" android:duration="1" />
<item android:drawable="@color/color2" android:duration="2" />
<item android:drawable="@color/color3" android:duration="3" />
<item android:drawable="@color/color4" android:duration="4" />
<item android:drawable="@color/color5" android:duration="5" />
答案 0 :(得分:1)
使用$\cl"myclass" {d/\dx [x^2]}$
,即将{}
放在表达式周围,将其分组到一个项目中。
您可能更喜欢$\cl"myclass" {d/{\it \dx} [x^2]}$
(我觉得它看起来更标准)。
答案 1 :(得分:1)
以防任何人遇到同样的问题我通过在css中的类旁边添加*来解决它
.myclass *{
color:blue ;
}