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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -