Strikingloo

Curious HTML Elements

Catskull’s I’m betting on HTML has a list of interesting HTML elements. I summarize a few I found of note.

Details: natively supported spoiler tag

<details>
	<summary>click to see</summary> 
	...rest of message
</details>

Mark: highlight text

This text appears <mark>highlighted</mark>.

New input types

<input type='color|date|range'>

Meter

<meter id="fuel"
       min="0" max="100"
       low="33" high="66" optimum="80"
       value="50">
    at 50/100
</meter>
at 50/100

[Share on twitter]

01 Aug 2023 - importance: 4