Latest web development tutorials

HTML DOM propiedad Estilo marginBottom

Estilo de referencia de objetos Objetos de estilo

Definición y Uso

marginBottom conjuntos de propiedades o devuelve el siguiente elemento desde el exterior.

gramática

Configuración de las propiedades marginBottom:

Object.style.marginBottom="%|length|auto|inherit"

marginBottom propiedades para la espalda:

Object.style.marginBottom

描述
% 定义基于父元素宽度的百分比下外边距。
length 使用 px、cm 等单位定义下外边距的宽度。
auto 浏览器设定的下外边距。
inherit 下外边距从父元素继承。


Soporte para el navegador

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Todos los principales navegadores soportan la propiedad marginBottom.

Nota: Internet Explorer 7 y versiones anteriores no son compatibles con el valor "heredar".IE8 sólo proporciona! DOCTYPE apoyado "hereda". apoyo IE9 "hereda".


Notas y sugerencias

propiedades de los márgenes y las propiedades de relleno se insertan en el espacio alrededor del elemento. Sin embargo, la diferencia está, el margen se inserta en el espacio alrededor del exterior de la frontera, el espacio inserciones de relleno dentro de la frontera elemento.


Ejemplos

Ejemplos

Cambie el margen inferior del elemento div:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<style type="text/css">
div{
    border: 1px solid #FF0000;
}
</style>
<script>
function changeMargin(){
    document.getElementById("ex1").style.marginBottom="100px";
}
function changePadding(){
    document.getElementById("ex2").style.paddingBottom="100px";
}
</script>
</head>
<body>

<div id="ex1">这是一些文本。</div>
<br>
<button type="button" onclick="changeMargin()">修改div元素的底部外间距</button>
<br>
<br>
<div id="ex2">这是一些文本。</div>
<br>
<button type="button" onclick="changePadding()">修改div元素的底部内间距</button>

</body>
</html>

Trate »


Estilo de referencia de objetos Objetos de estilo