blob: 71b94d146b9547262c406aed229114e1e5b708cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<style>
.container {
transform: rotateY(180deg);
width: 100px;
height: 100px;
overflow: scroll;
background: green;
}
.content {
width: 300px;
height: 300px;
}
</style>
<div class="container">
<div class="content"></div>
</div>
|