blob: 24a823f9ca37c1edd1006fe8645c4c72791a4e11 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Motion Path: ray paths with contain</title>
<style>
#container {
width: 300px;
height: 300px;
}
#target {
position: relative;
left: 150px;
top: 150px;
width: 100px;
height: 100px;
background-color: lime;
transform: rotate(0deg) translate(50px, -150px);
}
</style>
</head>
<body>
<div id="container">
<div id="target"></div>
</div>
</body>
</html>