I want a HTML <table>
to be just the size it needs to be.
Without specifying anything it will span the whole width. Setting width="auto"
doesn't work.
Do not set width on the table at all. This will make the table only as wide as needed by its content. If this looks too wide, look at the table content to see what causes width requirements in cells. For example, if you have long text in a cell, it will expand the cell to be as wide as needed, within the available width. If you wish to limit this, you need to set width
or max-width
on the content of a cell, or the cell itself, or the table.