Skip to content

Commit 15f071e

Browse files
committed
Update
1 parent 6671403 commit 15f071e

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

normalize.css

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,22 @@ body {
5454
}
5555

5656
/*
57-
* Remove outline on <a> element when active or hovered
57+
* 1.
58+
* Make outline thin dotted for <a>
59+
* Fixes outline displayed oddly in C10
60+
* 2.
61+
* Remove outline for <a> element when active or hovered
5862
* Improves readability when focused and also mouse hovered in all browsers
5963
*/
6064

65+
/* 1 */
66+
67+
a:focus {
68+
outline: thin dotted;
69+
}
70+
71+
/* 2 */
72+
6173
a:active,
6274
a:hover {
6375
outline: none;
@@ -114,6 +126,8 @@ mark {
114126
* 1.
115127
* Fixes font family set oddly in C10 S5
116128
* 2.
129+
* Fixes monospace font family set oddly in IE6
130+
* 3.
117131
* Fixes monospace line-height overflow in iOS
118132
*/
119133

@@ -122,7 +136,8 @@ code,
122136
kbd,
123137
samp {
124138
font-family: monospace, sans-serif; /* 1 */
125-
vertical-align: top; /* 2 */
139+
_font-family: 'Courier New', monospace, sans-serif;/* 2 */
140+
vertical-align: top; /* 3 */
126141
}
127142

128143
/*
@@ -159,10 +174,15 @@ q:after {
159174
}
160175

161176
/*
162-
* Define alignment for <sub> <sup> elements
177+
* Define alignment for <small> <sub> <sup> elements
163178
* Fixes alignment within multi-line text displayed oddly in all browsers
164179
*/
165180

181+
small {
182+
font-size: 75%;
183+
line-height: 1;
184+
}
185+
166186
sub,
167187
sup {
168188
font-size: 75%;

0 commit comments

Comments
 (0)