blob: 7dba149c75f298cf40f4ace4ae9496f100f14305 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1441341">
<link rel="match" href="input-no-centering-ref.html">
<style>
input {
appearance: none;
margin: 0;
width: 200px;
height: 200px;
}
input:before {
content: "";
display: block;
width: 100px;
height: 100px;
background: green;
}
</style>
<input type="checkbox">
|