是否可以将iframe
置于form
之内?
我尝试过以下操作但不起作用:
<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>
但我怀疑这不是这样做的方法。有什么指针吗?
答案 0 :(得分:2)
根据你的评论,你想要一个带滚动的元素,尝试如下:
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;
}