Elemento div


Elemento en bloque genérico para añadir estructura a los documentos.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
  <head>
    <title>Elemento div</title>
  </head>
  <body>
    <div>
      Contenido del primer div que, en general,
      contendrá otros elementos XHTML.
    </div>
    <div>
      Contenido del segundo div que, en general,
      contendrá otros elementos XHTML.
    </div>
  </body>
</html>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
  <head>
    <title>Elemento html</title>
  </head>
  <body>
    <div style="width:49%; float:left">
      Contenido del primer div que, en general,
      contendrá otros elementos XHTML.
    </div>
    <div style="width:49%; float:right">
      Contenido del segundo div que, en general,
      contendrá otros elementos XHTML.
    </div>
  </body>
</html>