x
 
<!DOCTYPE html>
<html>
<head>
<style>
#parentDIV {
  position: relative;
  height: 250px;
  width: 60%;
  border: solid black 1px;
}
#myDIV {
  position: absolute;
  background-color: lightblue;
  inset-block-end: 0;
  inset-block-start: 50px;
}
</style>
</head>
<body>
<h1>inset-block-start 属性</h1>
<div id="parentDIV">
  <div id="myDIV">
    <p>这个 DIV 在块方向上,其起始位置与父 DIV 元素之间有 50 像素的距离。</p>
  </div>
</div>
</body>
</html>