i export as html from mysql workbench
and it works. i export from heidi the export works
but when i export from heidi the html file
is no place to be found. a sql table ie there
i see it in workbench and heidi. but i get a error
that it dont exist.and it existed yesterday
like hmmmm whats going on
The export-to-HTML merely creates a basic table. If you have to change the display, open your HTML result with a TXT-Editor and change the values accordingly, e.g.
to
That however only stretches the whole table; the corresponding data rows are fixed width values, you should adapt them to percentages, e.g.:
to
or such, depending on the displayed data.
table, td {border: 1px solid silver;}
to
table, td {border: 1px solid silver;width:100%;}
That however only stretches the whole table; the corresponding data rows are fixed width values, you should adapt them to percentages, e.g.:
thead .col1 {width: 200px;}
to
thead .col1 {width: 15%;}
or such, depending on the displayed data.
Please login to leave a reply, or register at first.