Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前,我正在根据用户表单输入通过 php GD 动态生成 1-(N) 张图像,然后发布到显示图像的 iframe 中。
但是有几个问题:
那么有没有更好的方法来做到这一点?
使用带有set的固定大小的div元素。overflow: scroll
div
overflow: scroll
例如:
#container { width: 600px; height: 300px; overflow-y: scroll; //vertical scrolling only }
它的行为方式与 iframe 相同,但允许您更好地通过 javascript 控制内容和通过 CSS 设置样式。