html - using an iframe within a <form> -
is possible put iframe
within form
this?
i have tried following not work:
<form action = "etc"> <iframe> <input type="text" name="text1">input<br> <input type="text" name="text1">input<br> <input type="text" name="text1">input<br> <input type="text" name="text1">input<br> </iframe> <input type="submit"> </form>
but suspect not way it. pointers?
as per comment, want element scroll, try follows:
html:
<fieldset id="lotsofinputs"> <input type="text" name="text1">input<br> <input type="text" name="text1">input<br> <input type="text" name="text1">input<br> <input type="text" name="text1">input<br> </fieldset>
css:
#lotsofinputs { max-height: 200px; with: 100%; overflow: scroll; }
Comments
Post a Comment