margin-block-end
Baseline Widely available *
This feature is well established and works across many devices and browser versions. It’s been available across browsers since Januar 2020.
* Some parts of this feature may have varying levels of support.
Die margin-block-end CSS Eigenschaft definiert den logischen Blockendrand eines Elements, der je nach Schreibmodus, Richtung und Textausrichtung des Elements auf einen physischen Rand abgebildet wird.
Probieren Sie es aus
margin-block-end: 20px; writing-mode: horizontal-tb; margin-block-end: 20px; writing-mode: vertical-rl; margin-block-end: 20%; writing-mode: horizontal-tb; margin-block-end: auto; writing-mode: vertical-lr; <section id="default-example"> <div id="container"> <div class="row">One</div> <div class="row transition-all" id="example-element">Two</div> <div class="row">Three</div> </div> </section> #container { width: 300px; height: 200px; display: flex; align-content: flex-start; flex-direction: column; justify-content: flex-start; } .row { height: 33.33%; display: inline-block; border: solid #ce7777 10px; background-color: #2b3a55; color: white; flex-shrink: 0; } #example-element { border: solid 10px #ffbf00; background-color: #2b3a55; } Syntax
/* <length> values */ margin-block-end: 10px; /* An absolute length */ margin-block-end: 1em; /* relative to the text size */ margin-block-end: 5%; /* relative to the nearest block container's width */ margin-block-end: anchor-size(inline); margin-block-end: calc(anchor-size(--my-anchor block, 20px) / 4); /* Keyword values */ margin-block-end: auto; /* Global values */ margin-block-end: inherit; margin-block-end: initial; margin-block-end: revert; margin-block-end: revert-layer; margin-block-end: 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-start, margin-inline-start und margin-inline-end, die die anderen Ränder des Elements definieren.
Werte
Die Eigenschaft margin-block-end nimmt die gleichen Werte an wie die margin-left Eigenschaft.
Formale Definition
| Anfangswert | 0 |
|---|---|
| Anwendbar auf | wie bei margin |
| Vererbt | Nein |
| Prozentwerte | hängt vom Layoutmodell ab |
| Berechneter Wert | falls als Länge angegeben, die zugehörige absolute Länge; falls als Prozentwert angegeben, der angegebene Wert; ansonsten auto |
| Animationstyp | Längenangabe |
Formale Syntax
margin-block-end =
<'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
>Setzen des Blockendrandes
HTML
<div> <p class="exampleText">Example text</p> </div> CSS
div { background-color: yellow; width: 120px; height: 120px; } .exampleText { writing-mode: vertical-rl; margin-block-end: 20px; background-color: #c8c800; } Ergebnis
Spezifikationen
| Specification |
|---|
| CSS Logical Properties and Values Level 1> # margin-properties> |
Browser-Kompatibilität
Loading…
Siehe auch
- CSS Logical Properties and Values
- Die zugeordneten physischen Eigenschaften:
margin-top,margin-right,margin-bottomundmargin-left writing-mode,direction,text-orientation