Closed
Description
From: https://home.social/@ranger/109505541067518807
In browsers that don't support <selectmenu>
, you could do something like this to fallback to <select>
:
<selectmenu>
<select>
…</select>
</selectmenu>
(A bit, but probably not the same, like how you could put fallback content in a <video>
)
Should there be a mechanism, when browsers _ do_ support <selectmenu>
, that they ignore any nested <select>
s and assume they are only there as a fallback? Would that even be a safe assumption to make?