1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<html> <head> <style> #s2::before { content: "a"; position: absolute; } #s1 { overflow: clip; } #s3 { position: relative; } #s5 { position: absolute; } </style> </head> <body> <strike id="s1"> <strike id="s2"> <small id="s3"> <div> <div id="s4"></div> </strike> </div> </body> </html>