Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<style>
#header {
position: fixed;
}
#green {
position: absolute;
background: green;
border-radius: 1px;
transform: translateX(100px);
}
#text {
visibility: hidden;
}
</style>
</head>
<body>
<div id="header">
<div id="green"><span id="text">Text.</span></div>
</div>
</body>
</html>