Files
servo/tests/wpt/css-tests/css21_dev/html4/vertical-align-baseline-004.htm

40 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: 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.">
<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>