“маржа сокращения CSS” Ответ

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 Маржа

margin: <margin-top> || <margin-right> || <margin-bottom> || <margin-left>

/* shorthand margin*/
.box {
  margin: 20px;
}

/* The same margin written longhand */
.box {
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}
Fragile Flamingo

маржа сокращения CSS

margin: 10px 5px 10px 5px;
Unsightly Unicorn

CSS -код для маржи

body {
  margin: 0px;
}
Dummy Code YT

Ответы похожие на “маржа сокращения CSS”

Вопросы похожие на “маржа сокращения CSS”

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

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