Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Background-repeat applied to elements with 'display' set to 'inline'</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="flags" content="image" />
<meta name="assert" content="The 'background-repeat' property applies to elements with 'display' set to 'inline'." />
<style type="text/css">
div
{
background-color: red;
background-image: url('support/green15x15.png');
background-repeat: repeat;
display: inline;
font: 96px/1em serif;
}
</style>
</head>
<body>
<p>Test passes if there is a green box below and no red visible on the page.</p>
<div>&nbsp;&nbsp;&nbsp;</div>
</body>
</html>