SPAN vs DIV (Inline-Block)
Gibt es einen Grund, a<div style="display:inline-block">
anstelle einer<span>
eine Webseite gestalten?
Kann ich Inhalte innerhalb des Bereichs verschachteln? Was ist gültig und was nicht?
Ist es in Ordnung, damit ein 3x2-Tabellenlayout zu erstellen?
<div>
<span> content1(divs,p, spans, etc) </span>
<span> content2(divs,p, spans, etc) </span>
<span> content3(divs,p, spans, etc) </span>
</div>
<div>
<span> content4(divs,p, spans, etc) </span>
<span> content5(divs,p, spans, etc) </span>
<span> content6(divs,p, spans, etc) </span>
</div>