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


CSS inset-block-end用法及代码示例


CSS中的inset-block-end属性用于定义逻辑块结束偏移,而不用于内联偏移或逻辑块。此属性可以应用于任何writing-mode属性。

用法:

inset-block-end:length | percentage | auto | inherit | initial | unset;

属性值:



  • length:它设置以px,cm,pt等为单位的固定值。也可以使用负值。其默认值为0px。
  • percentage:它与长度相同,但是根据窗口大小的百分比设置。
  • auto:当需要浏览器确定inset-block-end时使用。
  • initial:它用于将inset-block-end属性的值设置为其默认值。
  • inherit:当需要该元素从其父元素继承inset-block-end属性时使用。
  • unset:它用于取消设置默认的inset-block-end属性。

以下示例说明了CSS中的inset-block-end属性:

范例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>CSS | inset-block-end Property</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        div { 
            background-color:green; 
            width:200px; 
            height:20px; 
        } 
          
        .one { 
            position:relative; 
            inset-block-end:30px; 
            background-color:cyan; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1>Geeksforgeeks</h1> 
        <b>CSS | inset-block-end Property</b> 
        <br><br> 
        <div> 
            <p class="one"> 
                A Computer Science Portal for Geeks 
            </p> 
        </div> 
  
    </center> 
</body> 
  
</html>                    

输出:

范例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>CSS | inset-block-end Property</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        div { 
            background-color:green; 
            width:200px; 
            height:120px; 
        } 
          
        .one { 
            writing-mode:vertical-rl; 
            position:relative; 
            inset-block-end:50px; 
            background-color:cyan; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1>Geeksforgeeks</h1> 
        <b>CSS | inset-block-end Property</b> 
        <br><br> 
        <div> 
            <p class="one"> 
                A Computer Science Portal for Geeks 
            </p> 
        </div> 
  
    </center> 
</body> 
  
</html>                    

输出:

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

  • Firefox
  • 谷歌浏览器
  • Edge
  • Opera

参考: https://developer.mozilla.org/en-US/docs/Web/CSS/inset-block-end




相关用法


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