表字段中的文本对齐方式

时间:2017-05-17 05:55:08

标签: php laravel-5

我想在数组推送表中将值数据对齐。我不能这样做。先感谢您。

foreach ($reps as $rep) {
    array_push($reptList,
        array(
            'id' => $rep->id,
            'value' => 'Rs. '.number_format($rep->value, 2),

        )
    );
}

2 个答案:

答案 0 :(得分:0)

将span标记添加到数组

中的数字值
foreach ($reps as $rep) {
                array_push($reptList,
                    array(
                        'id' => $rep->id,
                        'value' => 'Rs. <span style="text-align:right">'.number_format($rep->value, 2).'</span>',

                    )
                );
            }

答案 1 :(得分:0)

你不能通过PHP来做到这一点。

在您的视图文件html表中,将css应用于右侧文本对齐。

请参阅 answer 提供的Matt Howell