Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<meta charset="utf-8">
<title>Fieldset anonymous content box inherits rule-break</title>
<link rel="match" href="fieldset-content-box-rule-break-ref.html">
<meta name="assert" content="rule-break set on a fieldset should be inherited by the anonymous fieldset content box.">
<style>
fieldset {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
column-rule: 5px solid green;
row-rule: 5px solid green;
rule-break: intersection;
width: 200px;
margin: 0;
border: none;
padding: 0;
}
.item {
height: 50px;
background: blue;
}
</style>
<p>There should be a 2-column grid with green rules that break at intersections below.</p>
<fieldset>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</fieldset>