diff --git a/packages/documentation/copy/en/handbook-v2/Everyday Types.md b/packages/documentation/copy/en/handbook-v2/Everyday Types.md
index 18efd3bcbbf9..fda0ffed169f 100644
--- a/packages/documentation/copy/en/handbook-v2/Everyday Types.md
+++ b/packages/documentation/copy/en/handbook-v2/Everyday Types.md
@@ -387,6 +387,7 @@ Being concerned only with the structure and capabilities of types is why we call
Type aliases and interfaces are very similar, and in many cases you can choose between them freely.
Almost all features of an `interface` are available in `type`, the key distinction is that a type cannot be re-opened to add new properties vs an interface which is always extendable.
+
@@ -452,6 +453,7 @@ type Window = {
+
You'll learn more about these concepts in later chapters, so don't worry if you don't understand all of these right away.
diff --git a/packages/documentation/copy/en/reference/Advanced Types.md b/packages/documentation/copy/en/reference/Advanced Types.md
index b7f17b071cec..fc59dd9da27f 100644
--- a/packages/documentation/copy/en/reference/Advanced Types.md
+++ b/packages/documentation/copy/en/reference/Advanced Types.md
@@ -425,6 +425,7 @@ As we mentioned, type aliases can act sort of like interfaces; however, there ar
Almost all features of an `interface` are available in `type`, the key distinction is that a type cannot be re-opened to add new properties vs an interface which is always extendable.
+
@@ -490,6 +491,7 @@ type Window = {
+
Because an interface more closely maps how JavaScript objects work [by being open to extension](https://wikipedia.org/wiki/Open/closed_principle), we recommend using an interface over a type alias when possible.
diff --git a/packages/typescriptlang-org/src/templates/markdown.scss b/packages/typescriptlang-org/src/templates/markdown.scss
index ea7acee7c717..63a848efbf98 100644
--- a/packages/typescriptlang-org/src/templates/markdown.scss
+++ b/packages/typescriptlang-org/src/templates/markdown.scss
@@ -116,6 +116,10 @@
max-width: 100%;
}
+ div.table-container {
+ overflow-x: auto;
+ }
+
table.full-width-table {
width: 100%;
display: table;