parent-style-1-ref.html (203B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 6 .a { overflow: scroll; } 7 .b, .c { overflow: inherit; } 8 9 </style> 10 </head> 11 <body> 12 13 <div class="a"><span class="b"><div class="c"></div></span></div> 14 15 </body> 16 </html>