Commit 780636d9 authored by Mark Otto's avatar Mark Otto

fixes #3674: checkbox vertical alignment in IE9

parent b14d946a
......@@ -1013,9 +1013,8 @@ input[type="color"]:focus,
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0;
margin-top: 1px \9;
*margin-top: 0;
/* IE7 */
line-height: normal;
cursor: pointer;
}
......
......@@ -134,6 +134,7 @@ input[type="radio"],
input[type="checkbox"] {
margin: 4px 0;
*margin-top: 0; /* IE7 */
margin-top: 1px \9; /* IE8-9 */
line-height: normal;
cursor: pointer;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment