Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<style>
#header {
position: fixed;
top: 0;
left: 9px;
}
#header > div {
border-radius: 10px;
overflow:hidden;
height: 100px;
width: 100px;
}
#inner {
width: 200px;
height: 200px;
background-color:green;
}
</style>
<div id="section">
<div id="header">
<div>
<div id="inner"></div>
</div>
</div>
</div>
</html>