We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A plain vanilla table like below renders full-width with a full-width border. If a table doesn't need to be full-width, it shouldn't be.
The border issue seems to have to do with the display: block; in the following style:
display: block;
media="screen, print" table { border-collapse: collapse; border-spacing: 0; max-width: 100%; overflow-x: auto; display: block; }
<table cellspacing="0" cellpadding="0"> <tbody> <tr> <td>Arch</td> <td>Pen</td> </tr> <tr> <td>Chowder</td> <td>Maple</td> </tr> <tr> <td>Airplane</td> <td>Window</td> </tr> <tr> <td>Kirk</td> <td>Scotty</td> </tr> <tr> <td>Paper clip</td> <td>Thumb drive</td> </tr> <tr> <td>Column</td> <td>Brownies</td> </tr> <tr> <td>Oak</td> <td>Door</td> </tr> <tr> <td>Subway</td> <td>Skateboard</td> </tr> <tr> <td>Leia</td> <td>Cedar</td> </tr> <tr> <td>Fries</td> <td>Luke</td> </tr> </tbody> </table>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A plain vanilla table like below renders full-width with a full-width border. If a table doesn't need to be full-width, it shouldn't be.
The border issue seems to have to do with the
display: block;
in the following style:The text was updated successfully, but these errors were encountered: