如果我们这样称呼:
<?php echo $form->label($model,'Hello my friend'); ?>
我们在视口上输出以下内容:
“你好我的朋友”
在CSS上,我大概 大写,任何地方。
我们如何改变这种行为?
我尝试编辑CSS并制作:
label {
text-transform: none !important;
}
没有运气。
我们怎能拥有
你好我的朋友
完全像我们写的一样打印?
答案 0 :(得分:4)
而不是在视图文件上这样做:
<?php echo $form->label($model, 'Hello my friend'); ?>
我们已将其更改为:
<?php echo $form->label($model, 'hello_friend'); ?>
其中hello_friend在相应的模型方法attributeLabels()上定义,如下所示:
'hello_friend' => 'Hello my friend')
因此,正如bool.dev所说,我们必须放置属性名称而不是随机字符串。