--- id: 60fadce90f85c50d0bb0dd4f title: Step 41 challengeType: 0 dashedName: step-41 --- # --description-- To give the `fieldset` elements a bit of separation, select all but the last `fieldset` element, and give them a `border-bottom` of `3px solid #3b3b4f`. # --hints-- You can use the `:not(:last-of-type)` pseudo-class to select all but the last element. ```js assert.exists(new __helpers.CSSHelp(document).getStyle('fieldset:not(:last-of-type)')); ``` You should give the `fieldset` elements a `border-bottom` of `3px solid #3b3b4f`. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('fieldset:not(:last-of-type)')?.borderBottom, '3px solid rgb(59, 59, 79)'); ``` # --seed-- ## --seed-contents-- ```html Registration Form

Registration Form

Please fill out this form with the required information

``` ```css body { width: 100%; height: 100vh; margin: 0; background-color: #1b1b32; color: #f5f6f7; font-family: Tahoma; font-size: 16px; } h1, p { margin: 1em auto; text-align: center; } form { width: 60vw; max-width: 500px; min-width: 300px; margin: 0 auto; } fieldset { border: none; padding: 2rem 0; } --fcc-editable-region-- --fcc-editable-region-- label { display: block; margin: 0.5rem 0; } ```