我想为此文字添加样式'float:right'。我尝试了一些方法,但不行。我该如何为此添加内联css。
public function title()
{
return $this->t('You have {amount} of credit',
array('{amount}' => m('payment')->format(wm()->get('payment.helper')->credit())),
array('style'=>'float:right'));
}
请你给我一个提示吗?
答案 0 :(得分:2)
Yii翻译功能如下所示:Yii::t('category', 'message', \['params' => 'value'\])
。因此,您需要style
在邮件中进行翻译。
Yii::t(
'admin',
'You have <span style="{style}">{amount}</span>',
[
'{style}' => 'color: red;',
'{amount}' => 'Test',
]
);
-> <span style="color: red;">Test</span>