From: Martijn Cuppens Date: Mon, 2 Mar 2020 06:36:17 +0000 (+0100) Subject: Fix `th` alignment for Safari (#30323) X-Git-Tag: v5.0.0-alpha1~412 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=481540800d3c242c8152bbfed7fd60dbf59437c6;p=thirdparty%2Fbootstrap.git Fix `th` alignment for Safari (#30323) --- diff --git a/scss/_reboot.scss b/scss/_reboot.scss index e6be84e40f..c5f11d21a7 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 }