From 93d55237f7ccd540df89bf3eb23a6fb0f0f47816 Mon Sep 17 00:00:00 2001 From: Todd Wolfson Date: Sun, 30 Oct 2011 00:22:49 -0700 Subject: [PATCH] Fixed fieldset legend issue. Green border was appearing on a select box's first option. --- debugCSS.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debugCSS.css b/debugCSS.css index 0ac164a..7b41a6b 100644 --- a/debugCSS.css +++ b/debugCSS.css @@ -74,7 +74,7 @@ ol > *:not(li), ul > *:not(li), dl > *:not(dt):not(dd):after, form > *:not(fieldset):after, -fieldset *:not(legend):first-child:after, +fieldset > *:not(legend):first-child:after, iframe:not([title]):after, center:after, u:after, @@ -224,7 +224,7 @@ form > *:not(fieldset):after { content: 'Should you be using a FIELDSET?'; } -fieldset *:not(legend):first-child:after { +fieldset > *:not(legend):first-child:after { background: #88FF88; content: 'Should your FIELDSET be using a LEGEND?'; }