diff --git a/README.md b/README.md index 3420f440f2..7d8081a2dd 100644 --- a/README.md +++ b/README.md @@ -193,16 +193,16 @@ Thanks to [BrowserStack](https://www.browserstack.com/) for providing the infras Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/bootstrap#sponsor)] -[](https://opencollective.com/bootstrap/sponsor/0/website) -[](https://opencollective.com/bootstrap/sponsor/1/website) -[](https://opencollective.com/bootstrap/sponsor/2/website) -[](https://opencollective.com/bootstrap/sponsor/3/website) -[](https://opencollective.com/bootstrap/sponsor/4/website) -[](https://opencollective.com/bootstrap/sponsor/5/website) -[](https://opencollective.com/bootstrap/sponsor/6/website) -[](https://opencollective.com/bootstrap/sponsor/7/website) -[](https://opencollective.com/bootstrap/sponsor/8/website) -[](https://opencollective.com/bootstrap/sponsor/9/website) +[](https://opencollective.com/bootstrap/sponsor/0/website) +[](https://opencollective.com/bootstrap/sponsor/1/website) +[](https://opencollective.com/bootstrap/sponsor/2/website) +[](https://opencollective.com/bootstrap/sponsor/3/website) +[](https://opencollective.com/bootstrap/sponsor/4/website) +[](https://opencollective.com/bootstrap/sponsor/5/website) +[](https://opencollective.com/bootstrap/sponsor/6/website) +[](https://opencollective.com/bootstrap/sponsor/7/website) +[](https://opencollective.com/bootstrap/sponsor/8/website) +[](https://opencollective.com/bootstrap/sponsor/9/website) ## Backers diff --git a/site/content/docs/5.0/content/tables.md b/site/content/docs/5.0/content/tables.md index 1d5477313a..156a68e90d 100644 --- a/site/content/docs/5.0/content/tables.md +++ b/site/content/docs/5.0/content/tables.md @@ -399,7 +399,7 @@ Border styles, active styles, and table variants are not inherited by nested tab ## How nesting works -To prevent _any_ styles from leaking to nested tables, we use the child combinator (`>`) selector in our CSS. Since we need to target all the `td`s and `th`s in the `thead`, `tbody`, and `tfoot`, our selector would look pretty long without it. As such, we use the rather odd looking `.table > :not(caption) > * > * ` selector to target all `td`s and `th`s of the `.table`, but none of any potential nested tables. +To prevent _any_ styles from leaking to nested tables, we use the child combinator (`>`) selector in our CSS. Since we need to target all the `td`s and `th`s in the `thead`, `tbody`, and `tfoot`, our selector would look pretty long without it. As such, we use the rather odd looking `.table > :not(caption) > * > *` selector to target all `td`s and `th`s of the `.table`, but none of any potential nested tables. Note that if you add `