如何使用Codeigniter正确对齐视图?

时间:2015-02-23 11:06:37

标签: php codeigniter label

我创建了一个标签并希望将其对齐,我该怎么办?

标签代码:

echo form_label('Name', "Name: ");

1 个答案:

答案 0 :(得分:1)

Rikesh几乎是对的。它应该是:

$attributes = array(
    'style' => 'align:right'
);
echo form_label('Name', 'Name:', $attributes);