Skip to content

Commit

Permalink
HTML: test fieldset's legend and painting order
Browse files Browse the repository at this point in the history
  • Loading branch information
zcorpan committed Aug 21, 2018
1 parent 1202ff9 commit d7d5690
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
@@ -0,0 +1,10 @@
<!doctype html>
<title>Reference for fieldset painting order</title>
<style>
div { width: 200px; height: 200px; }
#a { background: green; }
#b { background: lime; position: relative; top: -100px; left: 100px; }
</style>
<p>There should be no red.</p>
<div id=a></div>
<div id=b></div>
@@ -0,0 +1,17 @@
<!doctype html>
<title>fieldset painting order</title>
<link rel=match href=fieldset-painting-order-ref.html>
<style>
fieldset, legend { margin: 0; padding: 0; }
fieldset {
border: 100px solid red;
width: 0;
min-width: 0;
height: 0;
}
legend { width: 200px; height: 200px; margin-left: -100px; background: green; }
legend > span { float: right; margin-top: 100px; width: 100px; height: 100px; background: red; }
fieldset > div { margin-top: -100px; background: lime; width: 200px; height: 200px; }
</style>
<p>There should be no red.</p>
<fieldset><legend><span></span></legend><div></div></fieldset>

0 comments on commit d7d5690

Please sign in to comment.