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
https://drafts.csswg.org/css-position/#relpos-insets https://drafts.csswg.org/css-tables/#border-collapsing
<!DOCTYPE html> <style>td { border: 10px solid rgba(0, 0, 0, 0.5); background: cyan }</style> <table style="border-collapse: collapse"> <td>A</td><td>B</td> </table> <table style="border-collapse: collapse"> <td>A</td><td style="position: relative; left: 0">B</td> </table> <table style="border-collapse: collapse"> <td>A</td><td style="position: relative; left: 50px">B</td> </table> <table style="border-collapse: collapse"> <tr style="position: relative; left: 50px"> <td>A</td><td>B</td> </tr> </table> <table style="border-collapse: collapse"> <tbody style="position: relative; left: 50px"> <td>A</td><td>B</td> </tbody> </table>
It's surprising to say at least that adding position: relative on a cell shrinks the background area...
position: relative
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://drafts.csswg.org/css-position/#relpos-insets
https://drafts.csswg.org/css-tables/#border-collapsing
It's surprising to say at least that adding
position: relative
on a cell shrinks the background area...The text was updated successfully, but these errors were encountered: