Skip to content
Snippets Groups Projects
Commit 3ccff4dc authored by Seth Meranda's avatar Seth Meranda
Browse files

Apparently, if using a CSS psuedo-selector in a rule that IE doesn't support,...

Apparently, if using a CSS psuedo-selector in a rule that IE doesn't support, it will skip other comma-seperated selctors in the same rule.
parent afbfbd25
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,11 @@
#maincontent .stuapp > fieldset > ol.full > li {
width:auto;
}
#maincontent .stuapp > fieldset > ol > li:nth-child(odd), #maincontent .stuapp > fieldset > ol > li.odd {
#maincontent .stuapp > fieldset > ol > li:nth-child(odd) {
clear: left;
margin-left: 0;
}
#maincontent .stuapp > fieldset > ol > li.odd {
clear: left;
margin-left: 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment