You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What problem does this solve or what need does it fill?
This is an important part of the CSS Grid specification which is used by prominent websites such as Wikipedia.
What solution would you like?
Add support for a list of named lines for the grid-template-{rows,columns} styles
Add a new style property that defines grid-template-areas
Support specifying a named line as a grid position. Using one of:
A seperate grid-area property
A merged grid-position property that accepts an enum of Area | Row+Column
Using the area-start and area-end grid lines to define the area.
What alternative(s) have you considered?
Make users of Taffy implement named grid lines and grid areas on top of Taffy themselves. I believe this is possible, but it would be nice to have the functionality built-in. We could consider feature flagging it to avoid the overhead where it is not needed.
The text was updated successfully, but these errors were encountered:
What problem does this solve or what need does it fill?
This is an important part of the CSS Grid specification which is used by prominent websites such as Wikipedia.
What solution would you like?
grid-template-{rows,columns}
stylesgrid-template-areas
grid-area
propertygrid-position
property that accepts an enum ofArea | Row+Column
area-start
andarea-end
grid lines to define the area.What alternative(s) have you considered?
Make users of Taffy implement named grid lines and grid areas on top of Taffy themselves. I believe this is possible, but it would be nice to have the functionality built-in. We could consider feature flagging it to avoid the overhead where it is not needed.
The text was updated successfully, but these errors were encountered: