5 ms·
Good stuff. Would be even nicer if it showed information about optionally self-closing tags, which is one of the main reasons I occasionally need to look at the
by jean- 10y ago
Good stuff. Would be even nicer if it showed information about optionally self-closing tags, which is one of the main reasons I occasionally need to look at the spec. For instance:
> A p element's end tag may be omitted if the p element is immediately followed by an address, article, aside, blockquote, div, dl, fieldset, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, main, nav, ol, p, pre, section, table, or ul, element, or if there is no more content in the parent element and the parent element is not an a element.
Links to the relevant parts of the official spec would be nice too, e.g. https://www.w3.org/TR/html5/grouping-content.html#the-p-element https://www.w3.org/TR/html5/grouping-content.html#the-p-elem...
- nathancahill 10y agoWhy would you do that to yourself?
- talmand 10y agoI'd rather just close the tag instead of trying to recall the specific instances of when I'm not required to close the tag.
- moron4hire 10y agoI think the point is that you may not be expecting the P tag to auto close, in the case of things like Address.
- tannhaeuser 10y agoDon't worry, http://sgmljs.net/docs/w3c-html51-dtd.html http://sgmljs.net/docs/w3c-html51-dtd.html has you covered Edit: to expand a bit, the link is to a pretty readable/hyperlinked DTD grammar for HTML (W3C HTML 5.1)
- ytugiuyghvk 10y agoNit: self-closing refers to tags that are closed like <this/>.