mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
26 lines
521 B
HTML
26 lines
521 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body { margin:0; padding:0; overflow:hidden; }
|
|
#new {
|
|
position: absolute;
|
|
left: 100px;
|
|
top: 100px;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: yellow;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="new" style="display:none"></div>
|
|
<script>
|
|
document.body.getBoundingClientRect().height;
|
|
document.body.style.transform = "translateX(100px)";
|
|
document.body.getBoundingClientRect().width;
|
|
document.getElementById("new").style.display = "";
|
|
</script>
|
|
</body>
|
|
</html>
|