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 -

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

c# - Search and Add Comment with OpenXML for Word -