Address inconsistent styling of abbr[title]

This commit is contained in:
Kaz Nishimura 2015-08-16 10:24:32 +09:00 committed by Jonathan Neal
parent a3531ef27b
commit 5304c784ff
2 changed files with 7 additions and 2 deletions

View File

@ -4,6 +4,7 @@
* Correct `hr` overflow in IE 8/9/10/11 and Edge 12.
* Ensure `mark` long-hand background declaration usage.
* Remove color inheritance from form controls.
* Address inconsistent styling of abbr[title].
=== 3.0.3 (March 30, 2015)

8
normalize.css vendored
View File

@ -103,11 +103,15 @@ a:hover {
========================================================================== */
/**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
* Address inconsistent styling of `abbr[title]`.
* 1. Correct styling in Firefox 39 and Opera 12.
* 2. Correct missing styling in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: 1px dotted;
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
}
/**