“Маржа CSS” Ответ

CSS Margin Bottom

.yourClass {
  margin-bottom: 25px;
}
Poised Penguin

HTML -встроенный маржа стиля

<div class="myClass" style="margin-top: 20px;">
<div class="myClass">
<div class="myClass" style="margin-bottom: 20px;">
Jealous Jaguar

Маржа 30px Auto

/* La propriété s'applique aux quatre côtés */
margin: 1em;

/* vertical | horizontal */
margin: 5% auto;

/* haut | horizontal | bas */
margin: 1em auto 2em;

/* haut | droit | bas | gauche */
margin: 2px 1em 0 auto;


/* Valeurs globales */
margin: inherit;
margin: initial;
margin: unset;
Ugly Unicorn

CSS Маржа

p {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-right: 150px;
  margin-left: 80px;
}
naly moslih

Маржа CSS

/* Apply to all four sides */
margin: 1em;
margin: -3px;

/* vertical | horizontal */
margin: 5% auto;

/* top | horizontal | bottom */
margin: 1em auto 2em; 

/* top | right | bottom | left */
margin: 2px 1em 0 auto;

/* Global values */
margin: inherit;
margin: initial;
margin: unset;
Blacksmith Plover

Как работает маржа в CSS

margin: 20px 10px 30px 40px; /* top | right | bottom | left */
kellbie

Ответы похожие на “Маржа CSS”

Вопросы похожие на “Маржа CSS”

Больше похожих ответов на “Маржа CSS” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования