blob: 27669a102b4bb69161ec554fa15444bbd88409b2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
zoom: 0.9;
transform: scale(40);
-webkit-transform-origin: 0 0;
overflow: hidden;
}
.container {
position: absolute;
top: 0px;
left: 0px;
width: 16px;
height: 16px;
}
.container > div {
position: absolute;
top: 0;
left: 50%;
width: 1.6px;
height: 8px;
margin-left: -0.8px;
background-color: red;
}
.rotated > div {
background-color: green !important;
transform: rotateZ(0);
}
</style>
</head>
<body>
<div class="container"><div></div></div>
<div class="container rotated"><div></div></div>
</body>
</html>