Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.clip {
overflow: hidden;
border: 2px solid red;
}
.c {
position: absolute;
top: 50px;
width: 100px;
height: 100px;
border: 2px solid green;
}
.anchor {
background: blue;
}
.anchored {
position: absolute;
background: green;
}
</style>
<div class=clip><div class=c><div class=anchor>anchor</div><div class=anchored>anchored</div>
</div></div>