Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
-->
<html>
<head>
<meta charset="utf-8">
<title>CSS Test: Static position of abspos children in a RTL grid container, with various "justify-self" values</title>
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
<link rel="match" href="grid-abspos-staticpos-justify-self-rtl-last-baseline-001-ref.html">
<style>
.container {
display: grid;
direction: rtl;
padding: 2px 1px;
border: 1px solid black;
background: yellow;
margin-bottom: 5px;
margin-right: 5px;
float: left; /* For testing in "rows" of containers */
position: relative;
}
br { clear: both }
.big > .container {
width: 30px;
height: 22px;
grid: 3px 14px 3px / 2px 20px 2px;
}
.small > .container {
grid: 3px 2px 3px / 0px 2px 0px;
width: 2px;
height: 4px;
margin-right: 10px; /* To avoid overlap between overflowing kids */
}
.container > * {
position: absolute;
grid-area: 2 / 2 / 3 / 3;
background: teal;
width: 6px;
height: 8px;
}
</style>
</head>
<body>
<!-- The last baseline value, from
<div class="big">
<div class="container"><div style="justify-self: last baseline"></div></div>
</div>
<div class="small">
<div class="container"><div style="justify-self: last baseline"></div></div>
</div>
</body>
</html>