Files
servo/tests/wpt/css-tests/css21_dev/html4/right-092.htm

39 lines
1.4 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Right using 'ex' units with a positive nominal value, +7.5ex</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-09-25 -->
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#propdef-right">
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#position-props">
<link rel="match" href="reference/right-019-ref.htm">
<meta name="flags" content="ahem">
<meta name="assert" content="The 'right' property sets a positive nominal length value in 'ex' units.">
<style type="text/css">
div
{
direction: rtl;
font: 20px/1 Ahem;
height: 1in;
position: relative;
}
#div1
{
border-right: 96px solid red;
}
div div
{
border-right: 96px solid black;
margin-right: -12ex;
right: +6ex;
}
</style>
</head>
<body>
<p>Test passes if there is <strong>no red</strong>.</p>
<div id="div1">
<div></div>
</div>
</body>
</html>