Re: [csswg-drafts] [css-position][css-tables] position doesn’t apply on <tr> either (#1899)

Here's an example page where `position: relative;` is applied to some table cells in order to position elements inside them on mobile resolutions.

In this case it is expected that the table cells are displayed the same way as if `position: static;` was applied (i.e. like in Blink, not like in Gecko):

https://www.gamestar.de/artikel/call-of-duty-modern-warfare-systemvoraussetzungen-auf-dem-pc-geprueft,3350489.html#minimale-systemvoraussetzungen

Reduced example:
```
data:text/html,<table><tr><th>a</th><th>b</th><th>c</th></tr><tr><td>a</td><td>b</td><td>c</td></tr></table><style>table{border-collapse:collapse;}th,td{border:4px solid black;background-color:wheat;}th{position:relative;}</style>
```

Sebastian

-- 
GitHub Notification of comment by SebastianZ
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1899#issuecomment-593278597 using your GitHub account

Received on Monday, 2 March 2020 08:24:07 UTC