當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


CSS inset 屬性用法及代碼示例


CSS中的inset屬性用於定義物理偏移量,而不用於內聯偏移量或邏輯塊。此屬性可以應用於任何writing-mode屬性。

用法:

inset:length|percentage|auto|inherit|initial|unset;

屬性值:

  • length:它設置一個以px,cm,pt等為單位的固定值。也可以使用負值。其默認值為0px。
  • percentage:它與長度相同,但是根據窗口大小的百分比設置大小。
  • auto:當需要瀏覽器確定插入大小時使用它。
  • initial:它用於將inset屬性的值設置為其默認值。
  • inherit:它從其父元素繼承inset屬性值。
  • unset:它用於取消設置inset屬性,它是默認值。

以下示例說明了CSS中的inset屬性:

範例1:




<!DOCTYPE html>
<html>
  
<head>
    <title>CSS | inset Property</title>
    <style>
        h1 {
            color:green;
        }
          
        div {
            background-color:purple;
            width:200px;
            height:100px;
            position:relative;
        }
          
        .one {
            position:relative;
            inset:10px 40px 30px 0px;
            background-color:#c8c800;
        }
    </style>
</head>
  
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | inset Property</b>
        <br><br>
        <div>
            <p class="one">
            A Computer Science Portal
            </p>
        </div>
    </center>
</body>
  
</html>

輸出:

範例2:


<!DOCTYPE html>
<html>
  
<head>
    <title>CSS | inset Property</title>
    <style>
        h1 {
            color:green;
        }
          
        div {
            background-color:purple;
            width:200px;
            height:100px;
            position:relative;
        }
          
        .one {
            position:relative;
            inset:10% 5% 5% 0%;
            background-color:green;
        }
    </style>
</head>
  
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | inset Property</b>
        <br><br>
        <div>
            <p class="one">
            A Computer Science Portal
            </p>
        </div>
    </center>
</body>
  
</html>

輸出:

支持的瀏覽器:以下列出了inset屬性支持的瀏覽器:

  • Firefox

參考: https://developer.mozilla.org/en-US/docs/Web/CSS/inset




相關用法


注:本文由純淨天空篩選整理自skyridetim大神的英文原創作品 CSS | inset Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。