Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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-width: inherit - border-style: hidden</title>
<link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" title="Section 8.5.1 Border width" href="http://www.w3.org/TR/CSS21/box.html#border-width-properties" />
<link rel="match" href="../reference/ref-if-there-is-no-red.xht" />
<meta content="The border-width computed value is '0' if the border style is 'none' or 'hidden'." name="assert" />
<style type="text/css"><![CDATA[
#parent
{
border-color: red;
border-style: hidden;
border-width: 50px;
}
#child
{
border-color: red;
border-style: solid;
border-width: inherit;
}
]]></style>
</head>
<body>
<p>Test passes if there is <strong>no red</strong>.</p>
<div id="parent">
<div id="child"></div>
</div>
</body>
</html>