blob: 329588767adee799588bd3d8b4e7ff2002e3b1b6 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
.container {
overflow: scroll;
height: 250px;
width: 250px;
margin: 10px;
border: 1px solid black;
}
.contents {
height: 250px;
width: 250px;
-webkit-transform: rotate(45deg);
background-color: silver;
}
</style>
</head>
<body>
<div class="container">
<div class="contents"></div>
</div>
<div class="container">
<img class="contents">
</div>
</body>
</html>