html - using an iframe within a <form> -


is possible put iframe within form this?

enter image description here

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

Popular posts from this blog

symfony - TEST environment only: The database schema is not in sync with the current mapping file -

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -