Open zcorpan opened 6 years ago
Related issue which also discusses appearance: none, #2805
I see 22 resources in httparchive that set 'appearance' on fieldset or legend:
https://gist.github.com/zcorpan/53efbbe20df21f10dbdd5e1368c790c4
I have not yet analyzed these.
Of those 22, there's only one that actually has a <fieldset>
rank | page | url | match |
---|---|---|---|
245049 | http://www.bigsquidrc.com/ | http://www.bigsquidrc.com/wp-content/cache/minify/63fbe.css | fieldset{-webkit-appearance:none;border:0;margin-bottom:25px;text-align:center} |
As far as I can tell, it wouldn't render differently if the fieldset was a div.
First draft of a proposal at https://docs.google.com/document/d/1JM0YmKNRmhl1nEqcg_M_KlxBg_q7LIz9xgzmbrHp34o/edit?usp=sharing
This would allow appearance: none on the fieldset to remove the BFC, the forced 'display', the legend association. It also allows appearance: none on the legend to remove the BFC, the forced 'display', shrink-wrapping, alignment (or not?), and the special placement. It would also allow authors to specify these styles on other elements.
The above doc received some comments from @MatsPalmgren (thanks!). I will preserve those comments there, but have now changed sharing such that new comments are not accepted.
I have made a pull request that supersedes the doc; comments welcome there.
The PR for this is https://github.com/whatwg/html/pull/4035 Tests at https://github.com/web-platform-tests/wpt/pull/12677
@MatsPalmgren @mstensho is there still interest in solving this issue?
See https://github.com/whatwg/html/pull/4035#issuecomment-1476330098 - leaving this issue open to come up with a different way to opt out of fieldset/legend magic rendering rules.
WebKit would be interested in solving this.
Today I asked on Twitter
https://twitter.com/zcorpan/status/1028999908433571846
answers so far
(It's display: block by default. Sites change the display value (to inline-block, table...) and expect the magic legend rendering.)
appearance: none is what I thought about before writing the tweet, also. Since float and position:absolute/fixed on the legend disentangles the legend, I thought appearance: none would go on the legend, but I suppose it could go on the fieldset instead.
Any preference on the implementation side, if we are to do this? cc @bzbarsky