#fieldset
November 29, 2025 at 7:27 PM
Painful lesson - especially if you use a fieldset to disable multiple fields and then convert the form to formData
today-years-old when I learned that disabled form fields don't show up in FormData 🥲
November 2, 2024 at 12:17 AM
Watercolor sketch 11/22

Watercolor is such a great sketch media. You can pack a small fieldset and paint everywhere, even in a car.

#art #sketch #sketchbook #painting #watercolor #fieldset
November 22, 2025 at 10:41 PM
why is no one talking about the <fieldset> of zelda
November 17, 2025 at 10:50 PM
Watercolor sketch in the car while waiting to pick up the kids from school.

#art #sketch #watercolor #fieldset #girl #portrait #girl
November 20, 2025 at 11:43 PM
I am designer.
April 13, 2026 at 9:20 PM
CSSWG have resolved to support appearance base on fieldset!

github.com/w3c/csswg-dr...

Cc @adactio.com I know you were keen for this.
[css-forms-1] Include fieldset and legend · Issue #11983 · w3c/csswg-drafts
Currently, fieldset default borders don't work well in dark mode in any browser, and legend is notoriously hard to style and specifically position. It would be good to include legend in base appear...
github.com
April 2, 2026 at 8:54 AM
💡 CSS Tip!

My take on the fieldset/legend layout using minimal HTML.

css-tip.com/filedset-leg...

A responsive and direction-aware implementation easy to control using CSS variables.
January 21, 2026 at 1:12 PM
Forms are better with
and because of accessibility and stuff (adrianroselli.com/2022/07/use-... for details), but did you know that
also has a hidden DX feature? You can toggle its disabled attribute to enable or disable whole sets of inputs all at once!

#html #webdev
January 26, 2026 at 12:37 PM
I helped my pal @chriskirknielsen.com fake a fieldset-legend layout (where the “legend” overlays and clips a containing border).

My technique, plus a few alternatives: cloudfour.com/thinks/fakin...

#CSS #WebDev #WebDesign
Faking a Fieldset-Legend
Using CSS to make a heading overlay and clip the border of its own container.
cloudfour.com
January 20, 2026 at 4:59 PM
If you want to disable form fields while submitting the form, you can use a
, instead of adding a disabled attribute to each field.

developer.mozilla.org/en-US/docs/W...
November 26, 2025 at 4:55 AM
Kind of bizarre: the button within `<legend>` does not become `disabled` from the `<fieldset>`.

```html
<fieldset disabled>
<legend><button type=button>Review</button></legend>
<button>Submit</button>
</fieldset>
```
July 17, 2026 at 4:38 AM
Of course <fieldset> is broken with CSS subgrid, why wouldn't it be
March 16, 2026 at 1:07 PM
@kevinpowell.co the CSS 👑 give us some tips about fieldset and legend html elements
buff.ly/5mnhqpq

from his great newsletter : buff.ly/VU1aJxB
#html #webdev
March 26, 2025 at 12:00 PM
While waiting for the kids in the car, i have my first field test on my new watercolor travel set. 20 mins.

#art #sketch #watercolor #fieldset #dog #painting
August 29, 2024 at 12:24 AM
i mean why stop *there*? what if i only want a little smidge of dark mode?
August 6, 2026 at 6:00 PM
built-in browser fieldset styling is demonic
June 29, 2026 at 6:22 AM
Faking a Fieldset-Legend: "Let’s mimic the look of a inside a
: Specifically, the way the element magically overlays and partially clips the border of the containing
." #CSS cloudfour.com/thinks/fakin...
Faking a Fieldset-Legend
Using CSS to make a heading overlay and clip the border of its own container.
cloudfour.com
January 28, 2026 at 6:04 PM
maybe one day browser vendors can fix suff like this so devs are incentivised to style accessible markup

adrianroselli.com/2022/07/use-...
Use Legend and Fieldset
It’s 2022 and people are still afraid to use <fieldset> and <legend>. I understand the layout challenges can be frustrating, but swapping to an ARIA group role will result in a more inaccessible exper...
adrianroselli.com
June 17, 2026 at 7:34 AM
how we doin’ on <fieldset> lately
August 13, 2026 at 4:02 PM
Remember, using a native HTML `
` / `` gets you better results in SRs than its ARIA equivalent:
adrianroselli.com/2022/07/use-...

My post deals with the inverse of the others I shared — unstyling the native HTML so you don’t need the ARIA construct.
Use Legend and Fieldset
It’s 2022 and people are still afraid to use <fieldset> and <legend>. I understand the layout challenges can be frustrating, but swapping to an ARIA group role will result in a more inaccessible exper...
adrianroselli.com
January 21, 2026 at 2:59 PM
demos updated:
- fieldset -> optgroup with label for better fallback + match desired semantics
February 17, 2026 at 4:06 PM
When submitting a form, it’s good practice to disable fields. This prevents users on slow connections from trying to change input once submission has started.

Instead of disabling each field individually you can add disabled to the
which is simpler.

developer.mozilla.org/en-US/docs/W...
July 20, 2025 at 12:30 PM
The fieldset and legend elements from @kevinpowell.co

html-css-tip-of-the-...

#FrontEnd #WebDev #CSS
March 24, 2025 at 3:23 PM