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
When creating a table using css grid with display: contents for row definition, draggable does not seem to work.
Simplified situation:
<draggable class="grid-table" draggable=".grid-row" handle=".dragger" tag="section"> <div class="grid-row"> <div class="dragger">Row 1 Column 1</div> <div>Row 1 Column 2</div> <div>Row 1 Column 3</div> </div> <div class="grid-row"> <div class="dragger">Row 2 Column 1</div> <div>Row 2 Column 2</div> <div>Row 2 Column 3</div> </div> <div class="grid-row"> <div class="dragger">Row 3 Column 1</div> <div>Row 3 Column 2</div> <div>Row 3 Column 3</div> </div> </div> <style> .grid-table { display: grid; grid-template-columns: repeat(3, 1fr); } .grid-row { display: contents; } </style>
The same structure but using table instead does work.
Is it possible to add support for the grid implementation?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When creating a table using css grid with display: contents for row definition, draggable does not seem to work.
Simplified situation:
The same structure but using table instead does work.
Is it possible to add support for the grid implementation?
The text was updated successfully, but these errors were encountered: