blob: d980ca9329dffe02c2e8e9a7fec694225b750922 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Absolutely positioned non-replaced elements with left, width, right and margin-left not auto</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#abs-non-replaced-width">
<meta name="flags" content="ahem">
<meta name="assert" content="If 'left', 'width', 'right' and 'margin-left' are all not 'auto' and 'margin-right' is 'auto', then solve the equation for 'margin-right'.">
<style type="text/css">
#containingblock
{
border: solid black;
direction: rtl;
height: 2in;
position: relative;
width: 3in;
}
div div
{
/* left + margin-left + border-left-width + padding-left + width + padding-right + border-right-width + margin-right + right = width of containing block */
/* 1in + 1in + 0 + 0 + 1in + 0 + 0 + solve + 1in = 3in */
background: red;
color: blue;
font: 1in/1em Ahem;
left: 1in;
margin-left: 1in;
margin-right: auto; /* value is solved to -1 */
position: absolute;
right: 1in;
width: 1in;
}
</style>
</head>
<body>
<p>Test passes if the blue square is in the upper-right corner of the black rectangle and there is no red visible on the page.</p>
<div id="containingblock">
<div>X</div>
</div>
</body>
</html>