Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Margin shorthand - four values application top, left, right, bottom</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-08-20 -->
<link rel="match" href="margin-shorthand-003-ref.xht" />
<meta name="flags" content="image" />
<meta name="assert" content="Applying four values to the margin property applies the values top, right, bottom, left, respectively." />
<style type="text/css">
#div1
{
background: url('support/shorthand-004.png') -5px;
border: 5px green solid;
width: 200px;
}
div div
{
background: green;
margin: 5px 20px 50px 100px;
height: 160px;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green rectangle and <strong>no red</strong>.</p>
<div id="div1">
<div></div>
</div>
</body>
</html>