-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Description
Old Safari and Chrome support for -webkit-text-emphasis-position. These browsers support over and under as values, but not the added left and right values required by the spec.
input:
em {
text-emphasis-position: over right; /* Standard syntax in the specification */
}output:
em {
-webkit-text-emphasis-position: over;
text-emphasis-position: over right;
}Note
WebKit and Blink support over and under as values, but not the added left and right values required by the spec.
That is to say:
-webkit-text-emphasis-position: under ≈ text-emphasis-position: under left;
-webkit-text-emphasis-position: over ≈ text-emphasis-position: over right;input:
em {
text-emphasis-position: under;
}output:
em {
-webkit-text-emphasis-position: under;
text-emphasis-position: under left;
}@zmmbreeze @ethantw Please review this.
jquery.emphasis and han.css muse be use standard grammar.
Reactions are currently unavailable