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>