Join Nostr
2026-03-06 09:11:52 UTC

Thomas Steiner :chrome: on Nostr: 👀 Intent to Prototype: HTML `toolbar` element ! Example from the Explainer (): ...

👀 Intent to Prototype: HTML `toolbar` element
https://groups.google.com/a/chromium.org/g/blink-dev/c/jitI6P4LHzc/m/mTFnh2pVCAAJ!

Example from the Explainer (https://open-ui.org/components/toolbar.explainer):

```html
<toolbar aria-label="Main">
<button id="undoButton" aria-label="Undo"><img src="..." alt=""></button>
<button id="redoButton" aria-label="Redo"><img src="..." alt=""></button>
<input id="zoomSelect" list="zoom" aria-label="Zoom">
...
</toolbar>
<datalist id="zoom">
<option>Fit</option>
<option>50%</option>
...
</datalist>
```