forked from mirrors/gecko-dev
MozReview-Commit-ID: 5JZo0z3LC7t Differential Revision: https://phabricator.services.mozilla.com/D6354 --HG-- extra : moz-landing-system : lando
28 lines
462 B
HTML
28 lines
462 B
HTML
<!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>
|