html - What is the meaning of this tag: <t>lorem ipsum</t> -
the template page http://www.blacktie.co/demo/kelvin contains tag haven't seen before: <t>email</t>
the corresponding css styles this: #footwrap t {font-weight: 700;}
i'm curious significance of <t>
. it's not listed @ http://htmldog.com/reference/htmltags or other lists can find.
is custom html tag? i've read custom elements (eg http://www.html5rocks.com/en/tutorials/webcomponents/customelements) need call document.registerelement()
or document.createelement()
doesn't seem case here.
is code semantically correct, or should written as:
<span class="t">email</span> #footwrap .t {font-weight: 700;}
yes, <t>
tag custom element. while custom tags can useful, if want them supported in browsers, have register element js:
var ttag = document.registerelement('t');
more custom tags here
answer question, coding not valid, unless have registered element browser javascript.
sometimes, easier use class
:d
Comments
Post a Comment