mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
41 lines
604 B
HTML
41 lines
604 B
HTML
<!DOCTYPE html>
|
|
<title>Reference for position:relative top constraint should behave correctly for table part elements</title>
|
|
<style>
|
|
table {
|
|
border-collapse:collapse;
|
|
}
|
|
|
|
td {
|
|
padding: 0;
|
|
}
|
|
|
|
td > div {
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|
|
|
|
.group {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 150px;
|
|
height: 200px;
|
|
}
|
|
|
|
.indicator {
|
|
position: absolute;
|
|
background-color: green;
|
|
left: 100px;
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="group">
|
|
<div>
|
|
<div class="indicator"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div>You should see a green box above. No red should be visible.</div>
|
|
|