41 lines
No EOL
1.5 KiB
HTML
41 lines
No EOL
1.5 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>CSS Test: Vertical-align applied to empty 'inline-block' and baseline alignment</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align" />
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading" />
|
|
|
|
<meta name="flags" content="ahem" />
|
|
<meta name="assert" content="The 'vertical-align' property aligns an empty 'inline-block' elements' bottom margin edge with the baseline." />
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
|
<style type="text/css">
|
|
div
|
|
{
|
|
background: black;
|
|
width: 3in;
|
|
}
|
|
#span1
|
|
{
|
|
color: white;
|
|
font: 1in/1em Ahem;
|
|
}
|
|
#span2
|
|
{
|
|
background: white;
|
|
display: inline-block;
|
|
height: 1in;
|
|
position: relative;
|
|
top: 0.2em;
|
|
width: 1in;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there are 2 parallel black bars of equal width.</p>
|
|
<div>
|
|
<span id="span1">X<span id="span2"></span>X</span>
|
|
</div>
|
|
<div id="reference">XXX</div>
|
|
</body>
|
|
</html> |