“CSS -Rand” Code-Antworten

CSS -Rand

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

Rand 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

Wie funktioniert der Rand in CSS?

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

CSS -Rand

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

Rand

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
Dizzy Dog

Margin Shorthand CSS

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

Ähnliche Antworten wie “CSS -Rand”

Fragen ähnlich wie “CSS -Rand”

Weitere verwandte Antworten zu “CSS -Rand” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen