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

gcc - MinGW's ld cannot perform PE operations on non PE output file -

How to connect android app to App engine -

hadoop - Running Map Reduce Job shows error - Mkdirs failed to create /var/folders/ -