849996-1.html (356B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 #parent { 6 width: 200px; 7 height: 200px; 8 overflow: hidden; 9 transform: translateX(10px); 10 background: green; 11 } 12 #child { 13 position: fixed; 14 top: -10px; 15 left: -10px; 16 width: 100px; 17 height: 100px; 18 background: red; 19 } 20 </style> 21 </head> 22 <body> 23 <div id="parent"> 24 <div id="child"></div> 25 </div> 26 </body> 27 </html>