hi Im using xhtml strict. I want to put a SPAN tag inside LABEL tag. Is it correct way ?
<label>Username <span>*</span></label><input type="text" .... />
hi Im using xhtml strict. I want to put a SPAN tag inside LABEL tag. Is it correct way ?
<label>Username <span>*</span></label><input type="text" .... />
label
is an inline element therefore can contain other inline elements like span
. So this is correct XHTML.