Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/widgets/button-layout/centering-003.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Block-level inside of a button gets centered vertically but not horizontally</title>
<link rel="author" href="mailto:obrufau@igalia.com" title="Oriol Brufau">
<link rel="match" href="centering-003-ref.html">
<style>
button {
box-sizing: content-box;
width: 200px;
height: 200px;
}
button > div {
width: 100px;
border: solid;
}
</style>
<button>
<div>ABC</div>
</button>