sticky-legend-1.html (323B)
1 <!DOCTYPE HTML> 2 <html> 3 <body> 4 <fieldset style="overflow:hidden; height:300px; border-style: solid;"> 5 <legend style="position:sticky; top:0;"><div style="width:200px; height:50px; background:yellow;"></div></legend> 6 </fieldset> 7 <div style="height:5000px;"></div> 8 <script> 9 window.scrollTo(0,100); 10 </script> 11 </body> 12 </html>