Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<body>
<div id="target" style="height: 200px; width: 600px;">
<div style="display: inline-grid; width: min-content; grid-template-rows: auto; height: 100%; background: green;">
<canvas width=60 height=60 style="height: 100%;"></canvas>
</div>
</div>
<script>
document.body.offsetTop;
document.getElementById('target').style.height = '100px';
</script>
</body>
</html>