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: Em size with font-size set to inch</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="match" href="numbers-units-010-ref.xht"/>
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'em' unit is equal to the computed value of the 'font-size' property (inches) of the element on which it is used." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#div1
{
font-size: 1in;
}
#test
{
background: black;
height: 1em;
width: 1em;
}
div
{
font-family: Ahem;
margin-top: 10px;
}
</style>
</head>
<body>
<p>Test passes if the two boxes below are the same size.</p>
<div id="div1">
<div id="test"></div>
<div>X</div>
</div>
</body>
</html>