<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>CSS Test: Background with (color image repeat)</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2012-03-14 --> <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background"> <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties"> <link rel="match" href="reference/background-026-ref.htm"> <meta name="flags" content="image"> <meta name="assert" content="Background with (color image repeat) sets the background of the element to the color specified and places the image in its initial position repeating across the x-axis."> <style type="text/css"> div { background: green url("support/blue15x15.png") repeat-x ; height: 200px; } </style> </head> <body> <p>Test passes if there is a blue stripe above a green rectangle across the page.</p> <div></div> </body> </html>