Blog | falk-m.de
Like other developers, I read articles, test new features, analyze code from others and so on.
Also, I have some interesting code snippets used in projects, if I need them, I always search in old projects.
This blog is my central place now, to collect interesting code snippets, features, etc. |
RSS Feed
underrated html elements
from falk-m.de
· 2025-06-30
HTML
dl element
Represents a description list, includes a list of terms and there description.
Examples
dl - description list
the lst element
dt - descriped term
the term
dd - term desctipt...
figcaption and datalist
from falk-m.de
· 2025-06-24
HTML
Since a few weeks I follow the mastodon bot DailyHtml.
The bot post every day a random HTML tag from the mozilla docs.
I see same deprecated tags but also interesting ones I don't know before.
data...
html dialog element demo
from falk-m.de
· 2025-03-20
JSCSSHTML
Visit demo
standard dialog
A dialog element is hidden by default.
.showModal() open the centered dialog and add a Backdrop element.
.show() open the dialog on top position and don't add a Backdrop...