margin-block-start

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2021.

Die margin-block-start CSS Eigenschaft definiert den logischen Blockanfangsrand eines Elements, welcher, abhängig vom Schreibmodus, der Richtung und der Textausrichtung des Elements, auf einen physischen Rand abbildet.

Probieren Sie es aus

Syntax

css
/* <length> values */
margin-block-start: 10px; /* An absolute length */
margin-block-start: 1em; /* relative to the text size */
margin-block-start: 5%; /* relative to the nearest block container's width */
margin-block-start: anchor-size(width);
margin-block-start: calc(anchor-size(--myAnchor block, 20px) / 3);

/* Keyword values */
margin-block-start: auto;

/* Global values */
margin-block-start: inherit;
margin-block-start: initial;
margin-block-start: revert;
margin-block-start: revert-layer;
margin-block-start: unset;

Sie entspricht der margin-top, margin-right, margin-bottom, oder margin-left Eigenschaft, abhängig von den definierten Werten für writing-mode, direction, und text-orientation.

Sie steht im Zusammenhang mit margin-block-end, margin-inline-start, und margin-inline-end, die die anderen Ränder des Elements definieren.

Werte

Die margin-block-start Eigenschaft nimmt die gleichen Werte an wie die margin-left Eigenschaft.

Formale Definition

Anfangswert0
Anwendbar aufwie bei margin
VererbtNein
Prozentwertehängt vom Layoutmodell ab
Berechneter Wertfalls als Länge angegeben, die zugehörige absolute Länge; falls als Prozentwert angegeben, der angegebene Wert; ansonsten auto
AnimationstypLängenangabe

Formale Syntax

margin-block-start = 
<'margin-top'>

<margin-top> =
<length-percentage> |
auto |
<anchor-size()>

<length-percentage> =
<length> |
<percentage>

<anchor-size()> =
anchor-size( [ <anchor-name> || <anchor-size> ]? , <length-percentage>? )

<anchor-name> =
<dashed-ident>

<anchor-size> =
width |
height |
block |
inline |
self-block |
self-inline

Beispiele

Blockanfangsränder setzen

HTML

html
<div>
  <p class="exampleText">Example text</p>
</div>

CSS

css
div {
  background-color: yellow;
  width: 120px;
  height: 120px;
}

.exampleText {
  writing-mode: vertical-lr;
  margin-block-start: 20px;
  background-color: #c8c800;
}

Ergebnis

Spezifikationen

Specification
CSS Logical Properties and Values Level 1
# margin-properties

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch