diff --git a/scss/_reboot.scss b/scss/_reboot.scss
index 524645fb02fc..d1476d17f56e 100644
--- a/scss/_reboot.scss
+++ b/scss/_reboot.scss
@@ -356,12 +356,12 @@ caption {
// 1. Removes font-weight bold by inheriting
// 2. Matches default `
` alignment by inheriting `text-align`.
-// 3. Fix alignment for Safari
+// 3. Fix alignment
th {
font-weight: $table-th-font-weight; // 1
text-align: inherit; // 2
- text-align: -webkit-match-parent; // 3
+ text-align: match-parent; // 3
}
thead,
|