blob: 0b38ba89e1073d6f08288156f3038cd652b3aafd [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
}
.box {
background-color: green;
margin-top: 10px;
}
.width {
width: 50vw;
height: 100px;
}
</style>
</head>
<body>
<p>Both boxes should be the same width.</p>
<div class="box width"></div>
<div class="box width" style="zoom:2"></div>
</body>
</html>