vote up 1 vote down star

Twitter seems to be using an <i/> tag to display their icons from a css sprite. Did they just make up that tag, or is HTML I've never heard of?

Brilliant idea at any rate :)

flag

1  
where on twitter are you talking about? i don't see it... could you post a snippet of the source? – Kip Oct 30 at 20:31

5 Answers

vote up 7 vote down check

That's the regular italics tag, but without any contents; i.e. it's semantically equivalent to <i></i>.

In XML, empty elements are written with an extra slash at the end. XHTML is valid XML. So <i/> is fine. For a more common example, think of e.g. <br />.

To see for yourself that <i/> is a valid XHTML tag, check the XML EmptyElemTag definition or pass the following to the W3C validator:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <title></title>
  </head>
  <body>
    <p><i/></p> <!-- look here -->
  </body>
</html>


   As Toji correctly points out, the syntactic difference is relevant under certain circumstances. Though browsers may not treat <i/> any different from <i></i>, other XML parsers could!

link|flag
1  
No, it's not equivalent! In many cases they will be treated the same, so the are functionally equivalent most of the time. Any decent XML parser will allow you to detect the difference between empty elements (<tag/>) and elements with 0 length content (<tag></tag>), at which point the implementation may treat them differently. Simply because most don't does not indicate that they are the same. Sorry to rant a bit about a technicality, but the distinction should be made! – Toji Oct 30 at 21:00
@Toji: you are very right to point out the distinction between syntactic and semantic equivalence. I'll update the answer to reflect this. – Stephan202 Oct 30 at 21:05
1  
Actually, there's nothing in the XML spec that says these two constructs are different: <tag/> and <tag></tag>. In fact, in the Annotated XML Spec (xml.com/axml/testaxml.htm), Tim Bray says, "So, is this: <img src='madonna.gif'></img> really exactly the same as <img src='madonna.gif'/>? As far as XML is concerned, they are." If an XML parser lets you see the distinction, it's similar to it letting you know whether an attribute was enclosed in single-quotes vs. double-quotes. It isn't a distinction, it's trivia. – Ned Batchelder Oct 30 at 21:16
@Ned: so as far as the XML standard is concerned, <x/> and <x></x> should not be treated differently? Or is it in fact that they must not be treated differently, meaning that any parser which does is in violation of the standard? (Of course, I agree that it is silly to ascribe different semantics to <x/> and <x></x>; I'm just interested to learn how strict the XML spec is in this respect.) – Stephan202 Oct 30 at 21:30
@Stephan202. The relevant passage (from section 3.1 of the XML spec) doesn't talk in those terms. What it says is "[Definition: An element with no content is said to be empty.] The representation of an empty element is either a start-tag immediately followed by an end-tag, or an empty-element tag. ... Empty-element tags may be used for any element which has no content, whether or not it is declared using the keyword EMPTY" – Alohci Oct 30 at 21:52
show 3 more comments
vote up 2 vote down

I have seen people use empty style-oriented elements (e.g. <i/>, <b/>) as hooks for extra styling for UI widgets that are reused throughout a site. OOCSS does this. For example, the basic module's structure is defined as

<div class="mod"> 
  <b class="top"><b class="tl"></b><b class="tr"></b></b>
  <div class="inner">
    <div class="bd">
      <p>Lorem ipsum.</p>
    </div>
  </div>
  <b class="bottom"><b class="bl"></b><b class="br"></b></b> 
</div>

Then depending on your CSS (and the context where you use the module), those empty <b /> elements may receive styling to add e.g. border images, or they might receive no styling at all and have no impact on the page.

I couldn't find the tags you are referring to so I don't know if this is what Twitter is doing, but it is an interesting use of these tags regardless.

link|flag
vote up 0 vote down

They're probably using that to reduce HTTP payload, i.e. bandwidth cost.

link|flag
If by bandwidth cost you mean reducing the performance penalty of many http requests on the client side. The cost of bandwidth wouldn't be reduced much even if it mattered to a site like that. – jsoverson Oct 30 at 20:55
1  
Compare <span class="some-sprite"></span> to <i/>. Say this technique is used twice per page. That's a savings of 58 bytes per page view. Twitter is receiving about 1.5 billion pages views per month. That's a bandwidth savings of 81GB per month. Now that alone doesn't amount to much for twitter, but similar optimizations across the board can add up to significant cost savings. But I'm open to your speculation of the rationale. – gWiz Oct 30 at 22:50
vote up 2 vote down

Nope, they didn't make it up.

link|flag
vote up 7 vote down

That's the italics tag.

link|flag
but it's a weird usage, to make it self-closing like that... – Kip Oct 30 at 20:29
2  
I think the question is how is it legal as a contentless tag - it looks like it's not italicizing any text. – Andrew Medico Oct 30 at 20:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.