mirror of
https://github.com/necolas/normalize.css.git
synced 2024-12-25 15:14:19 +00:00
Address inconsistent styling of abbr[title]
This commit is contained in:
parent
a3531ef27b
commit
5304c784ff
@ -4,6 +4,7 @@
|
|||||||
* Correct `hr` overflow in IE 8/9/10/11 and Edge 12.
|
* Correct `hr` overflow in IE 8/9/10/11 and Edge 12.
|
||||||
* Ensure `mark` long-hand background declaration usage.
|
* Ensure `mark` long-hand background declaration usage.
|
||||||
* Remove color inheritance from form controls.
|
* Remove color inheritance from form controls.
|
||||||
|
* Address inconsistent styling of abbr[title].
|
||||||
|
|
||||||
=== 3.0.3 (March 30, 2015)
|
=== 3.0.3 (March 30, 2015)
|
||||||
|
|
||||||
|
8
normalize.css
vendored
8
normalize.css
vendored
@ -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] {
|
abbr[title] {
|
||||||
border-bottom: 1px dotted;
|
border-bottom: none; /* 1 */
|
||||||
|
text-decoration: underline; /* 2 */
|
||||||
|
text-decoration: underline dotted; /* 2 */
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user