1709452-ref.html (600B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <style> 6 a { 7 color: rgb(255, 0, 0); 8 } 9 </style> 10 </head> 11 12 <body> 13 <div style="display: flex;"> 14 <div style="display: block;"> 15 <div style="display: inline; filter: invert(0);"> 16 <a href="#"> 17 <span>FOO</span> 18 </a> 19 <div style="position: absolute; top: 100px; left: 100px;"> 20 <a id="bar" style="color:rgb(0, 255, 0)" href="#">BAR</a> 21 </div> 22 </div> 23 </div> 24 </div> 25 </body> 26 </html>