当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


CSS margin-inline-end用法及代码示例


margin-inline-end属性用于定义元素的逻辑内联结束边距。此属性有助于根据元素的书写模式,方向性和文本方向放置边距。

用法:

margin-inline-end:length | auto | initial | inherit | unset;

属性值:



  • length:它设置以px,cm,pt定义的固定值。负值也是允许的。默认值为0px。
  • auto:当需要浏览器确定左边距的宽度时使用它。
  • initial:它用于将margin-left属性的值设置为其默认值。
  • inherit:当希望元素继承其父元素的margin-left属性作为其自己的属性时使用。
  • unset:在未设置默认margin-block的情况下使用它。

以下示例说明了CSS中的margin-inline-end属性:

范例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>CSS | margin-ilnie-end Property</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        div { 
            background-color:yellow; 
            width:110px; 
            height:110px; 
        } 
        .geek { 
            background-color:purple; 
            writing-mode:vertical-rl; 
            margin-inline-end:20px; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1>Geeksforgeeks</h1> 
        <b>CSS | margin-iline-end Property</b> 
        <br><br> 
        <div> 
            <b class="geek">Cascading Stylesheet</b> 
        </div> 
  
    </center> 
</body> 
  
</html>                        

输出:

范例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>CSS | margin-ilnie-end Property</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        div { 
            background-color:yellow; 
            width:110px; 
            height:110px; 
        } 
        .geek { 
            background-color:purple; 
            writing-mode:vertical-rl; 
            margin-inline-end:auto; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1>Geeksforgeeks</h1> 
        <b>CSS | margin-iline-end Property</b> 
        <br><br> 
        <div> 
            <b class="geek">Cascading Stylesheet</b> 
        </div> 
  
    </center> 
</body> 
  
</html>                                                

输出:

参考: https://docs.w3cub.com/css/margin-inline-end/

支持的浏览器:下面列出了margin-inline-end属性支持的浏览器:

  • IE浏览器
  • Mozila Firefox



相关用法


注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 CSS | margin-inline-end Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。