aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scss/_reboot.scss5
1 files changed, 3 insertions, 2 deletions
diff --git a/scss/_reboot.scss b/scss/_reboot.scss
index e6be84e40..c5f11d21a 100644
--- a/scss/_reboot.scss
+++ b/scss/_reboot.scss
@@ -344,11 +344,12 @@ caption {
caption-side: bottom;
}
-// Matches default `<td>` alignment by inheriting from the `<body>`, or the
-// closest parent with a set `text-align`.
+// Matches default `<td>` alignment by inheriting `text-align`.
+// 1. Fix alignment for Safari
th {
text-align: inherit;
+ text-align: -webkit-match-parent; // 1
}