Ejemplo 1: cómo mover una imagen hacia arriba en css
.image{
position: relative;
top: -125px;
}
Ejemplo 2: cuales son los tipos de posicionamiento en css
The types of positioning in CSS are-
1)static: this is the default value.
2)sticky: the element is positioned based on the user's scroll position.
3)fixed: the element is positioned related to the browser window.
4)relative: the element is positioned relative to its normal position.
5)absolute: the element is positioned absolutely to its first positioned parent.
Ejemplo 3: como 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 4: cómo empujar el texto hacia la derecha css
padding-left: 3px;
Ejemplo 5: html cómo mover el elemento a la parte inferior derecha de la página
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Test</title>
<style>
#foo {
position: fixed;
bottom: 0;
right: 0;
}
</style>
</head>
<body>
<div id="foo">Hello World</div>
</body>
</html>
Ejemplo 6: cómo cambiar la posición del texto
type text-align: center;
you can make it to right and to the left
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)