Earlier quoted context omitted.
That was my first thought... if people don't use these very old elements any more, there's probably a good Chesterson's fence-type reason. Frames seemed really cool when I first saw them too, until I actually started trying to support them.
Meter, progress and details/summary are from HTML5 so definitely not “very old”
Cool HTML elements nobody uses
81–90 of 111 posts
Re: Cool HTML elements nobody uses
#82My favorite (non-conforming, do-not-use) element is . It switches the browser's parsing context to "generic raw text"; it emits any "child" markup as-is, without parsing it. [0] https://jsfiddle.net/spdustin/y4m3qd71/1/
I believe you can also just write . (See https://stackoverflow.com/questions/3302648/should-i-use-cda... ). It's normally only used to wrap non-HTML content inside and ; but you could put "HTML that should be rendered as text" in there as well!
So `` will print x
` will emit a `cdata-in-html-content` parse error (your compliant HTML parser is allowed to give up here if it's lazy) and is parsed as `` (your HTML parser will actually do this because giving up leads to poor user experience when no one else does)Re: Cool HTML elements nobody uses
#83I am old enough to remember development when image maps were still common for things like headers and big hero homepage navigation images. I'd like to add which acts like an img tag and submit button that submits the clicked X and Y essentially as two separate inputs Here's an MDN example showing X and Y position in GET string on click. - https://mdn.github.io/learning-area/html/forms/image-type-ex...
https://www.spacejam.com/1996/cmp/souvenirs/souvenirsframes....
Re: Cool HTML elements nobody uses
#84Earlier quoted context omitted.
Decades ago, I disabled blink by loading my netscape binary into emacs and changing the tag name. Surprisingly marquee is still there, you can even go into the DOM and rename your top level elements "marquee" and the entire page scrolls.
Just did that to HN's . Got a good chuckle out of it, thanks.
Re: Cool HTML elements nobody uses
#85Having used all of these in the past, here's why this is the case: 1. meter/progress - default style looks dated, styling works different on different browsers, the color scale options are confusing 2. sup/sub & 7. abbr - these are only useful for page content (as opposed to site design), which is usually WYSIWYG or something like Markdown. Many editors/parsers don't support it, at least by default. 4. map/area - it'…
Easier now that plugins are dead and is basically equivalent to
Re: Cool HTML elements nobody uses
#86Basically let your users generate rsa keys so you could use mutual tls (i.e. client side certificates) instead of passwords.
Re: Cool HTML elements nobody uses
#87Re: Cool HTML elements nobody uses
#88I am old enough to remember development when image maps were still common for things like headers and big hero homepage navigation images. I'd like to add which acts like an img tag and submit button that submits the clicked X and Y essentially as two separate inputs Here's an MDN example showing X and Y position in GET string on click. - https://mdn.github.io/learning-area/html/forms/image-type-ex...
Half of it was outputted by dreamweaver 3.0 but it needed a lot of manual touch up.
Re: Cool HTML elements nobody uses
#89remember this tag?