blob: 728af61ca4af98154a6e3271ff0f764d71d91ab6 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.box {
box-sizing: border-box;
margin: 20px;
width: 100px;
height: 100px;
background-color: orange;
border: 20px solid blue;
}
</style>
</head>
<body>
<div class="box" style="-webkit-transform: scale3d(1, 1, 1)"></div>
</body>
</html>