rotateY-180deg-with-overflow-scroll.html (593B)
1 <!DOCTYPE html> 2 <title>CSS Test (Transforms): rotateY(180deg) and overflow scroll</title> 3 <link rel="help" href="http://www.w3.org/TR/css-transforms-2"> 4 <link rel="match" href="rotateY-180deg-with-overflow-scroll-ref.html"> 5 <style> 6 .container { 7 transform: rotateY(180deg); 8 width: 100px; 9 height: 100px; 10 overflow: scroll; 11 } 12 .content { 13 width: 300px; 14 height: 300px; 15 } 16 </style> 17 <div class="container"> 18 <div class="content" style="background: green"></div> 19 </div> 20 <div class="container" style="backface-visibility: hidden"> 21 <div class="content" style="background: red"></div> 22 </div>