UNPKG

argus-eyes

Version:

A lightweight commandline tool for visual regression testing of UI components.

35 lines (34 loc) 711 B
<!doctype html> <html> <head> <style> .header, .footer { display: block; margin: 25px; } .header { width: 250px; height: 100px; background: crimson; } .footer { width: 100px; height: 250px; background: crimson; } .footer.active1 { background: mediumaquamarine; } .footer.active1.active2 { background: steelblue; } .footer.active1.active2.active3 { background: royalblue; } </style> </head> <body> <div class="header"></div> <div class="footer"></div> </body> </html>