Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-fonts/font-size-monospace-adjust.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<link rel="match" href="font-size-monospace-adjust-ref.html">
<style>
  textarea {
    font-size: 3em;
    transition: margin-bottom 1e10s steps(2, start);
    margin-bottom: 10px;
  }
  .margin {
    margin-bottom: 20px;
  }
</style>
<textarea id=textarea>Textarea</textarea>
<script>
  document.documentElement.offsetTop;
  textarea.classList.toggle('margin');
</script>