Codeigniter表标题文本不会中心

时间:2015-11-29 10:17:09

标签: php codeigniter html-table

我在使用codeigniter表库创建的表格中遇到问题,这是我的表格模板:

$tmpl = array (
                'table_open'          => '<table style="align: center;" border="5" >',

                'heading_row_start'   => '<tr style="border: 2px solid black; background-color: #2ecc71; font-weight:bold; color:white; align:center;">',
                'heading_row_end'     => '</tr>',
                'heading_cell_start'  => '<th style="align:center;border: 2px solid black;" height=70 width=200>',
                'heading_cell_end'    => '</th>',

                'row_start'           => '<tr style="background-color: #DBF6ED; font-weight:bold;">',
                'row_end'             => '</tr>',
                'cell_start'          => '<td style="border: 2px solid black;" align=center height=50>',
                'cell_end'            => '</td>',

                'row_alt_start'       => '<tr style="background-color: white; font-weight:bold;">',
                'row_alt_end'         => '</tr>',
                'cell_alt_start'      => '<td style="border: 2px solid black;" align=center height=50>',
                'cell_alt_end'        => '</td>',

                'table_close'         => '</table>'
          );

这就是它在表标题中的作用:

enter image description here

你可以看到文字没有居中。

1 个答案:

答案 0 :(得分:3)

使用text-align: center;代替align: center;

相关问题