问题
I'm 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" .... />
回答1:
label
is an inline element therefore can contain other inline elements like span
. So this is correct XHTML.
来源:https://stackoverflow.com/questions/3657629/xhtml-strict-span-inside-label-is-semantic