mirror of
https://github.com/servo/servo
synced 2026-05-10 17:12:23 +02:00
21 lines
353 B
HTML
21 lines
353 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Pixel snapping position test</title>
|
|
<style>
|
|
div {
|
|
position: absolute;
|
|
height: 100px;
|
|
width: 100px;
|
|
top: 11.5px;
|
|
background: red;
|
|
transform: scale(1);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|