I've been experimenting with xhtml and now I'm wondering that is there a valid/correct way to add empty elements.

Short question, but here's the two ways I've been using:

<div> </div>
<div>&#32;</div> <!-- Same as space -->

Hope someone knows an answer for this.

Thanks.

link|improve this question

I'm going to hazard a guess that the answer I've given below doesn't help you too much - could you explain what you're trying to achieve? – nickf Jan 29 '10 at 15:02
I just wanted to some expert around here tell me, which way is the valid way to add empty element. I need empty elements for many effects but no need to make the code unvalid. I've been told that it's not recommendable to leave any element just empty. – Martti Laine Jan 29 '10 at 15:35
feedback

2 Answers

up vote 0 down vote accepted
<div />

is valid XTHML for an empty element: i.e. self-closing. Same as

<div></div>
link|improve this answer
Okay, thanks :-) This is actually the thing I was looking for. – Martti Laine Jan 29 '10 at 16:04
@Martti: Highly inadvisable in a browser though. IE treats always XHTML as HTML and will not parse that correctly. See stackoverflow.com/questions/348736/… – Tim Down Jun 1 '11 at 14:09
feedback

Like this:

<div></div>

A space inside an element is not "nothing" - it's a text node which makes the element non-empty.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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