Descripción
La propiedad margin es una propiedad abreviada que establece el ancho de los márgenes en los cuatro lados de un elemento.
Valores posibles
length - Cualquier valor de longitud.
percentage - El ancho del margen se calcula con respecto al ancho del bloque contenedor del elemento.
auto - Establece los valores de los cuatro márgenes que se calcularán automáticamente.
Se aplica a
Todos los elementos HTML.
Sintaxis DOM
object.style.margin = "5px"
Ejemplo
Aquí está el ejemplo:
<html>
<head>
</head>
<body>
<p style = "margin: 15px; border:1px solid black;">
all four margins will be 15px
</p>
<p style = "margin:10px 2%; border:1px solid black;">
top and bottom margin will be 10px, left and right margin will be 2%
of the total width of the document.
</p>
<p style = "margin: 10px 2% -10px; border:1px solid black;">
top margin will be 10px, left and right margin will be 2% of the
total width of the document, bottom margin will be -10px
</p>
<p style = "margin: 10px 2% -10px auto; border:1px solid black;">
top margin will be 10px, right margin will be 2% of the total
width of the document, bottom margin will be -10px, left margin
will be set by the browser
</p>
</body>
</html>
Esto producirá el siguiente resultado: