<html>
<head>
<style>
body {
background-color: #E7E9EB;
}
#myDIV {
height: 300px;
position: relative;
background-color: #FFFFFF;
}
.bluediv {
position: absolute;
height: 100%;
background-color: lightblue;
inset-inline-start: 0;
inset-inline-end: 90px;
}
</style>
</head>
<body>
<h1>The inset-inline-end property</h1>
<div id="myDIV">
<div class="bluediv">
See this blue div element with different inset-inline-end values.
</div>
</div>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.php?filename=trycss_play_inset-inline-end by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 18:16:40 GMT -->
</html>