Ok, a long headline. I have a table structured like this:
<table> <thead> <tr><th>longer Heading with a width of 100%</th></tr> </thead> <tbody> <tr><td>cell 1</td><td>cell 2</tr> <tr><td>cell 3</td><td>cell 4</tr> </tbody> </table>
And I would like th to be full width and not change the width of the table cells. I suppose there is some CSS display property that would make this possible, but I haven't found a working solution yet.
html html-table table
user2625636
source share