mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
f7ffcd09fb
Differential Revision: https://phabricator.services.mozilla.com/D99595
23 lines
371 B
HTML
23 lines
371 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#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>
|