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
Given a table using rowspans like this:
<table-saw breakpoint="(max-width: 600px)"> <table> <thead> <tr> <th>Type</th> <th>Name</th> </tr> </thead> <tbody> <tr> <td rowspan="2">Fruits</td> <td>apple</td> </tr> <tr> <td>banana</td> </tr> <tr> <td rowspan="2">Vegetables</td> <td>carrot</td> </tr> <tr> <td>onion</td> </tr> </tbody> </table> </table-saw>
The mobile view is messing up the rows:
In this example each group would have two rows and the labels should match the values:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given a table using rowspans like this:
The mobile view is messing up the rows:
In this example each group would have two rows and the labels should match the values:
The text was updated successfully, but these errors were encountered: