margin-inline-start
        
        
          
                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-inline-start CSS-Eigenschaft definiert den logischen Inline-Start-Rand eines Elements, der in Abhängigkeit vom Schreibmodus, der Richtung und der Textorientierung des Elements auf einen physischen Rand abgebildet wird. Sie entspricht der margin-top, margin-right, margin-bottom, oder margin-left-Eigenschaft, abhängig von den Werten, die für writing-mode, direction, und text-orientation definiert sind.
Probieren Sie es aus
margin-inline-start: 20px;
writing-mode: horizontal-tb;
margin-inline-start: 20px;
writing-mode: vertical-rl;
margin-inline-start: 20%;
writing-mode: horizontal-tb;
direction: rtl;
<section id="default-example">
  <div id="container">
    <div class="col">One</div>
    <div class="col transition-all" id="example-element">Two</div>
    <div class="col">Three</div>
  </div>
</section>
#container {
  width: 300px;
  height: 200px;
  display: flex;
  align-content: flex-start;
  justify-content: flex-start;
}
.col {
  width: 33.33%;
  border: solid #ce7777 10px;
  background-color: #2b3a55;
  color: white;
  flex-shrink: 0;
}
#example-element {
  border: solid 10px #ffbf00;
  background-color: #2b3a55;
  unicode-bidi: bidi-override;
}
Syntax
/* <length> values */
margin-inline-start: 10px; /* An absolute length */
margin-inline-start: 1em; /* relative to the text size */
margin-inline-start: 5%; /* relative to the nearest block container's width */
margin-inline-start: anchor-size(block);
margin-inline-start: calc(anchor-size(--my-anchor width, 30px) / 4);
/* Keyword values */
margin-inline-start: auto;
/* Global values */
margin-inline-start: inherit;
margin-inline-start: initial;
margin-inline-start: revert;
margin-inline-start: revert-layer;
margin-inline-start: unset;
Sie steht im Zusammenhang mit margin-block-start, margin-block-end, und margin-inline-end, welche die anderen Ränder des Elements definieren.
Werte
Die margin-inline-start-Eigenschaft 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-inline-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
>Festlegen des Inline-Start-Randes
HTML
<div>
  <p class="exampleText">Example text</p>
</div>
CSS
div {
  background-color: yellow;
  width: 120px;
  height: 120px;
}
.exampleText {
  writing-mode: vertical-lr;
  margin-inline-start: 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
- margin-inline-end
- Die zugeordneten physischen Eigenschaften: margin-top,margin-right,margin-bottom, undmargin-left
- writing-mode,- direction,- text-orientation