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