[Doxygen-users] No longer able to control HTML tables
Brought to you by:
dimitri
From: Vega, L. A <lui...@lm...> - 2010-01-20 02:29:43
|
I just upgraded from v1.5.9 to v 1.6.2 and the new HTML output is ignoring any formatting to the table. Anything added to the HTML tag (especially to the headers <th> and table border). The header output is always right aligned with a navy-blue background and even if border="0" is added, the border is always displayed. The following HTML example should generate an invisible table (i.e.: no borders and no background colors) with all text centered in the cells: <table border="0" size="50%"> <tr> <th align="center">Header 1</th> <th align="center">Header 2</th></tr> <tr align="center"> <td>Row 1 Col 1</td> <td>Row 1 Col 2</td> </tr> <tr align="center"> <td>Row 2 Col 1</td> <td> Row 2 Col 2</td> </tr> </table> Is the option for using HTML table tags no longer supported or is this a newly introduced bug in v1.6.2 ? |