Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/borders/border-applies-to-012.xht - WPT Dashboard Interop Dashboard
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Border applied to element with 'display' set to inline-block</title>
<link rel="reviewer" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-12-03 -->
<link rel="match" href="border-applies-to-001-ref.xht" />
<meta name="assert" content="The 'border' property applies to elements with a display of inline-block." />
<style type="text/css">
span#inline-block
{
border: green solid 4px;
display: inline-block;
width: 96px;
}
span.block-descendant
{
color: white;
display: block;
height: 48px;
}
</style>
</head>
<body>
<p>Test passes if there is a hollow green square.</p>
<div>
<span id="inline-block">
<span class="block-descendant">a</span>
<span class="block-descendant">b</span>
</span>
</div>
</body>
</html>