Ejemplo 1: cómo mover todo lo que queda en CSS
<html>
<head>
</head>
<body>
<div style = "position:relative; left:80px; top:2px; background-color:yellow;">
This div has relative positioning.
</div>
</body>
</html>
Ejemplo 2: css a la izquierda
.right {
position: fixed; /* the fixed pos makes it work */
left: /*how much you want to move it left
put % or px or rem at end of the amount */;
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)