Is “
” different from “” ?

http://stackoverflow.com/questions/1142104/is-div-different-from-span-style-displayblock

Greg 写道
Yes they are different.

Even though you style a span with display: block you still can't put block-level elements inside it:

<div><p>correct</p></div>
<span style="display: block;"><p>wrong</p></span>
The (X)HTML still has to obey the (X)HTML DTD (whichever one you use), no matter how the CSS alters things.


然后:

http://www.w3schools.com/tags/tag_div.asp
http://www.w3schools.com/tags/tag_span.asp

你可能感兴趣的:(html,css)