logo htlm 5

Ejemplo de position top right bottom left longitud

Código Resultado

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
p.fijo
{
position:fixed;
top:2cm;
left:100px
}
</style>
</head>

<body>
<p class="fijo">La propiedad 'top' tiene como unidad de longitud centímetros y la propiedad 'left' pixels.</p>
</body>
</html>