<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS 2.1 Test Suite: margin</title> <style type="text/css"><![CDATA[ div { font: 1em/1 Ahem; margin: 1em; } .test { width: 6em; padding: 1em 1em 0; border: solid; } .test p { margin: -1em; color: orange; background: yellow; } .control { width: 8em; background: red; border: solid; } .control .a { width: 4em; height: 1em; vertical-align: bottom; } .control .b { width: 4em; height: 1em; vertical-align: bottom; } ]]></style> <link title="8.3 Margin properties: 'margin-top', 'margin-right', 'margin-bottom', 'margin-left', and 'margin'" href="http://www.w3.org/TR/CSS21/box.html#margin-properties" rel="help"/> <link title="10.2 Content width: the 'width' property" href="http://www.w3.org/TR/CSS21/visudet.html#the-width-property" rel="help"/> </head> <body> <p>The next two bars should be identical:</p> <!-- This test is too complicated. --> <div class="test"> <p> TEST </p> </div> <div class="control"> <img alt="" src="support/swatch-orange.png" class="a"/><img alt="" src="support/swatch-yellow.png" class="b"/> </div> </body> </html>