mirror of
https://github.com/servo/servo.git
synced 2025-08-02 04:00:32 +01:00
20 lines
353 B
HTML
20 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>
|