Skip to content
New issue

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

[css-tables] Display: sub-row #5316

Open
Crissov opened this issue Jul 13, 2020 · 5 comments
Open

[css-tables] Display: sub-row #5316

Crissov opened this issue Jul 13, 2020 · 5 comments
Labels
css-tables-3 Current Work

Comments

@Crissov
Copy link
Contributor

Crissov commented Jul 13, 2020

Table cells that wrap inside because they can have a lot of textual content, e. g. in columns labeled Notes or Comment, are a common problem in data tables which otherwise tend to have narrow columns. To deal with this in responsive layouts that must work on narrow screens without horizontal scrolling or in printouts, some designers do not use HTML tables and the CSS layout model informed by them, but fake it with different elements and display values.

I think a new value table-sub-row could deal with a lot of use cases: it would default to the same behavior as table-cell, but if its content needed to wrap and its height would therefore become greater than its parent table-row, it would instead display like a single cell spanning all columns in a new display row after the current one.

It becomes more complicated to specify, of course, if multiple cells in a row have this display value and if they should be able to share horizontal space by automatically distributing the available width. I think, though, that it is quite doable if every sub-row just spans the complete width.

@Loirooriol
Copy link
Contributor

I think inserting extra rows in some cases but not in others may break rowspan.

@FremyCompany
Copy link
Contributor

I understand the use case. But this doesn't seem reasonable to me, implementation wise. The only way to know is to fully layout the whole table once, then throw everything out and restart if something happened to the notes.

Tables having already two layout passes, that sounds extra bad.

@Crissov
Copy link
Contributor Author

Crissov commented Jul 16, 2020

I understand. Would it make a significant difference if the default was not the cell-like behavior but the row-like behavior.?

@fantasai fantasai added the css-tables-3 Current Work label Jul 23, 2020
@Crissov
Copy link
Contributor Author

Crissov commented Nov 2, 2020

PS: This would, in some way, be similar to run-in.

@Crissov
Copy link
Contributor Author

Crissov commented Jan 22, 2025

I realize that this would probably need to apply to all cells within a column collectively, so maybe this should work (only) with elements that otherwise have display: table-column or table-column-group.

col.note {display: table-column-runin;}

Dunno.

In #11499 I suggested that it might be necessary to represent HTML attributes colspan and rowspan by CSS properties, e.g. like this:

td, th {
  display: table-cell; 
  table-span: attr(rowspan type(<integer>), 1) attr(colspan type(<integer>), 1);
}

Then it could be possible to solve this use case by other means:

td.note, th.note,
col.note || :is(th, td) {
  table-slot: 1 new-row-after;
  table-span: all-remaining-cols 1;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
css-tables-3 Current Work
Projects
None yet
Development

No branches or pull requests

4 participants