OLD | NEW |
(Empty) | |
| 1 <style> |
| 2 legend { height: 10px; border: 1px solid blue; } |
| 3 fieldset { margin-bottom: 10px;border: 2px solid green; } |
| 4 div.rel { position: relative; height: 100px;border:2px solid red; } |
| 5 </style> |
| 6 <body> |
| 7 <div class="rel" style="width: 500px;"> |
| 8 <fieldset style="position: absolute;margin-left:20px;"> |
| 9 <legend style="width: 150px;margin-left:10px;margin-right:20px"></le
gend> |
| 10 <h1 style="background-color:green;margin:5px">HEADING 1</h1> |
| 11 </fieldset> |
| 12 </div> |
| 13 <div class="rel" style="width: 500px;"> |
| 14 <fieldset style="position: absolute;margin-left:40px;"> |
| 15 <legend style="width: 150px;margin-left:10px;margin-right:20px"></le
gend> |
| 16 <h1 style="background-color:green;margin:5px">HEADING 1</h1> |
| 17 </fieldset> |
| 18 </div> |
| 19 <div class="rel" style="width: 500px;margin-left :20px;"> |
| 20 <fieldset style="position: absolute;margin-left:-20px;"> |
| 21 <legend style="width: 150px;margin-left:10px;margin-right:20px"></le
gend> |
| 22 <h1 style="background-color:green;margin:5px">HEADING 1</h1> |
| 23 </fieldset> |
| 24 </div> |
| 25 <div class="rel" style="width: 500px;"> |
| 26 <fieldset style="position: absolute;width:500px;margin-left:20px;margin-
right:20px;"> |
| 27 <legend style="width: 150px;margin-left:10px;margin-right:20px"></le
gend> |
| 28 <h1 style="background-color:green;margin:5px">HEADING 1</h1> |
| 29 </fieldset> |
| 30 </div> |
| 31 </body> |
OLD | NEW |