Files
sousa-gecko/layout/reftests/forms/button/vertical-centering.html
T
Emilio Cobos Álvarez aab327b89b Bug 1966675 - Remove all remnants of ::-moz-focus-inner. r=layout-reviewers,desktop-theme-reviewers,devtools-reviewers,nchevobbe,dao
Let me know if you want a pref for this, but I think it's not needed.

This pseudo has not done anything useful for years and years now, and I
haven't seen it combined with any other selector in a way that could
cause breakage.

Differential Revision: https://phabricator.services.mozilla.com/D249596
2025-05-16 14:30:48 +00:00

30 lines
395 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
input, div {
height: 100px;
display: inline-block;
border: 0;
padding: 0;
font: 2em sans-serif;
background: transparent;
color: black;
}
input {
-moz-appearance: none;
}
div {
line-height: 100px;
text-align: center;
}
</style>
</head>
<body>
<input type='button' value='button' />
<div>button</div>
</body>
</html>