blob: f4106da240c74f2ab969e69cfe6c669dbec644ba [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.layer {
width: 200px;
height: 200px;
border: 1px solid black;
background-color: blue;
-webkit-transform: translate3d(100px, 100px, 0) rotate(45deg);
}
</style>
</head>
<body>
<!-- Content that requires a layer. -->
<div class="layer"><p>Check this out</p></div>
<!-- Content that does not require a layer. -->
<div><p>I feel so regular...</p></div>
</body>
</html>