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
gap
Example: https://play.tailwindcss.com/OM1dOhPIMq
<div class="grid grid-cols-2 gap-4 bg-slate-200"> <div class="bg-yellow-200">left</div> <div class="bg-gray-400">right</div> <div class="bg-yellow-200">left</div> <div class="bg-gray-400">right</div> <div class="bg-yellow-200">left</div> <div class="bg-gray-400">right</div> <div class="bg-yellow-200">left</div> <div class="bg-gray-400">right</div> <div class="bg-yellow-200">left</div> <div class="bg-gray-400">right</div> <div class="bg-yellow-200">left</div> <div class="bg-gray-400">right</div> <div class="bg-yellow-200">left</div> <div class="bg-gray-400">right</div> </div>
.gap-4 { gap: 1rem/* 16px */; } .grid { display: grid; } .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
If I try that with weasyprint (with different colors) I get this result:
I seems to add this. the more divs you have, the greater is the space at the bottom
The text was updated successfully, but these errors were encountered:
Hi!
Thanks for the report. Good news: I think that it’s already been fixed in the grid-auto-flow-column branch that will be merged soon.
grid-auto-flow-column
Sorry, something went wrong.
I can confirm that it's fixed with the latest commit. Thank you.
Successfully merging a pull request may close this issue.
Example:
https://play.tailwindcss.com/OM1dOhPIMq
If I try that with weasyprint (with different colors) I get this result:
I seems to add this. the more divs you have, the greater is the space at the bottom
The text was updated successfully, but these errors were encountered: