Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do custom elements require a close tag?

Tags:

html

polymer

Elements I've defined (that don't require contents) seem to work just fine without a closing tag. I'm wondering if it's just a quirk of the browser though.

What's the verdict? Is it theoretically possible? What if the parser sees the element before its definition?


1 Answers

Yes. Custom elements require a closing tag. Only certain tags in HTML are allowed to be self-closing due to the parser.

The following is a complete list of the void elements in HTML:

area, base, br, col, command, embed, hr, img, input, keygen, link, meta, param, source, track, wbr

and :

A non-void element must have an end tag, unless the subsection for that element in the HTML elements section of this reference indicates that its end tag can be omitted.

http://www.w3.org/TR/html-markup/syntax.html#syntax-elements

like image 67
ebidel Avatar answered Sep 02 '25 07:09

ebidel



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!