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: Height for inline elements when 'line-height' is smaller than 'height'</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-line-height" />
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading" />
|
|
<meta name="flags" content="ahem" />
|
|
<meta name="assert" content="The 'line-height' property sets the initial height but that height is increased if the content height is larger." />
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
|
<style type="text/css">
|
|
#div1
|
|
{
|
|
color: blue;
|
|
font: 100px/1 Ahem;
|
|
position: relative;
|
|
}
|
|
span
|
|
{
|
|
line-height: 0;
|
|
}
|
|
#div2
|
|
{
|
|
background: orange;
|
|
height: 200px;
|
|
left: 100px;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the blue and orange rectangle have the same height.</p>
|
|
<div id="div1">
|
|
<div>X</div>
|
|
<span>X</span>
|
|
<div id="div2"></div>
|
|
</div>
|
|
</body>
|
|
</html> |