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

44 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 with a keyword, 'text-bottom'</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 sets the keyword 'text-bottom'.">
<style type="text/css">
#div1
{
position: relative;
}
#div2
{
position: absolute;
top: 1in;
}
#span1
{
font: 1.5in/1em Ahem;
}
span span
{
color: red;
vertical-align: text-bottom;
}
#div2, span span
{
font: 0.5in/1em Ahem;
}
</style>
</head>
<body>
<p>Test passes if there is a large and small box on the page and there is no red visible on the page.</p>
<div id="div1">
<div>
<span id="span1"><span>X</span>X</span>
</div>
<div id="div2">X</div>
</div>
</body>
</html>