CSS - margem
Descrição
A propriedade margin é uma propriedade abreviada que define a largura das margens em todos os quatro lados de um elemento.
Valores possíveis
length - Qualquer valor de comprimento.
percentage - A largura da margem é calculada em relação à largura do bloco que contém o elemento.
auto - Define os valores para todas as quatro margens a serem calculadas automaticamente.
Aplica-se a
Todos os elementos HTML.
Sintaxe DOM
object.style.margin = "5px"
Exemplo
Aqui está o exemplo -
<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>
Isso produzirá o seguinte resultado -