css - Style attribute of HTML fieldSet Tag is Not Working -
my html these
<html> <body> <fieldset id="sourcename" style="width: 350px; height: 80px; overflow: auto;"> data..... </fieldset> </body> </html>
the above code working fine in ie , opera when run same code in mozilla firefox style attribute of fieldset not working on mozilla should use. simple qustion how give scrollbar fieldset in mozilla.
ff doesn't seem handle fieldset overflow in standard way. workaround, use nested div:
<fieldset id="sourcename" style="width: 350px; height: 80px;"> <div style="width: 350px; height: 80px; overflow: auto;"> data..... </div> </fieldset>
Comments
Post a Comment