<span class="drop" />
Can HTML spans be closed like this?
|
Whether or not this is valid depends on your doctype, basically whether or not you're using XHTML or HTML. When using XHTML, all major browsers will support self closing tags like the example you provided. Take the following example, this is valid because I'm specifying the page is using XHTML (in other words, HTML that is valid XML). Update: Based on the very good comments below, browsers will only interpret all self closing tags correctly if the mime type is This example will validate:
However, this example is not valid, because I've switched the doctype to HTML:
A few helpful references: |
|||||||||||||
|
|
No, this isn't supported by all browsers. |
|||
|
Testing the following fragment on validator.w3.org:
Validating as HTML 4.01 Strict
Validating as XHTML 1.0 Strict
|
|||
|
|
|
Since the tag provides no visual change by itself, it doesn't make sense to me to have an auto-closing span block with no content. The tag provides a way to add a hook to a part of a text or a part of a document. When the text is hooked in a span element you can add styles to the content, or manipulate the content with for example JavaScript. However, to answer your question, yes the html code block posted is valid. |
|||
|
|
This is what the spec says for HTML 4.01 and for XHTML 1.0. No, it's a container unlike an image or (deprecated) horizontal rule. |
|||||||
|
|
Easiest way to check is using http://validator.w3.org/ And the answer is no. |
|||
|
|
|
You must write HTML compatible XHTML if you wish to serve it as text/html, and you must serve it as text/html if you want it to work in IE <= 8. |
|||
|
|
|
No http://www.w3schools.com/tags/tag_span.asp The |
|||||
|
|
No, it's not. You can close like this ONLY if you can't insert in tag something For example: you can`t insert tag or text inside tag img, so you can close tag like this |
||||
|
|
<span class="drop"></span>isn't that much more to type, and it's definitely supported. – zzzzBov Mar 24 '11 at 17:52