diff --git a/scss/_reboot.scss b/scss/_reboot.scss
index e6be84e40f1a..c5f11d21a759 100644
--- a/scss/_reboot.scss
+++ b/scss/_reboot.scss
@@ -344,11 +344,12 @@ caption {
caption-side: bottom;
}
-// Matches default `
` alignment by inheriting from the ``, or the
-// closest parent with a set `text-align`.
+// Matches default ` | ` alignment by inheriting `text-align`.
+// 1. Fix alignment for Safari
th {
text-align: inherit;
+ text-align: -webkit-match-parent; // 1
}
|