<html>
<head>
<style>
#parentDIV {
position: relative;
height: 250px;
width: 60%;
border: solid black 1px;
}
#myDIV {
position: absolute;
background-color: lightblue;
inset-block-start: 0;
inset-block-end: 50px;
}
</style>
</head>
<body>
<h1>The inset-block-end Property</h1>
<div id="parentDIV">
<div id="myDIV">
<p>This DIV has a distance of 50 pixels to the parent DIV element from end of element in the block direction.</p>
</div>
</div>
</body>
</html>