Ejemplo de Position sin Capas
Se colocan cuatro cabezaras H1 h2 h3 y h4 sin usar capas
Position-Hs-CSS-sinCapas.html
—
HTML,
0Kb
Contenido del Archivo
<html>
<head>
<title> Posicion </TITLE>
<style>
h1 { position:absolute; top: 45px; left:45px}
h2 { position:absolute; top: 45px; right:45px}
h3 { position:absolute; bottom: 45px; left:45px}
h4 { position:absolute; bottom: 45px; right:45px}
</style>
</head>
<body>
<H1 >posicion (1a) top: 45px; left:45px </h1>
<H2 >posicion (1b) top: 45px; right:45px</h2>
<h3>posicion (2a) bottom: 45px; left:45px</h3>
<h4>posicion (2b) bottom: 45px; right:45px</h4>
</body>
</html>

