scrollable-button-centering.html (648B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Scrollable buttons are center-aligned and derive a baseline from their contents</title> 4 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> 5 <link rel="author" href="https://mozilla.com" title="Mozilla"> 6 <link rel="help" href="https://html.spec.whatwg.org/#button-layout"> 7 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1977669"> 8 <link rel="match" href="scrollable-button-centering-ref.html"> 9 <style> 10 button { 11 height: 5em; 12 } 13 </style> 14 <button style="overflow: hidden">ABC</button> 15 <button>ABC</button> 16 <button style="overflow: auto">ABC</button>