2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-02 16:04:07 +03:00

fixes #3674: checkbox vertical alignment in IE9

This commit is contained in:
Mark Otto
2012-08-14 15:29:47 -07:00
parent b14d946afb
commit 780636d955
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -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;
}
+1
View File
@@ -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;
}