我有一份工作来开发一个网站.我的客户想要它,以便有一个标题,菜单和内容一个类似矩形的框,您可以在其中滚动文本.因此标题和菜单不会移动,但框中的文本会移动.
它应该如下所示:
***********header image ***********
menu menu menu menu
--------------
| you ||
| can ||
| scroll in ||
| this box ||
|_____________
Run Code Online (Sandbox Code Playgroud)
不,去DIV:
<div id="iframeReplacement">
<p>CONTENT GOES HERE :)</p>
</div>
Run Code Online (Sandbox Code Playgroud)
使用CSS:
#iframeReplacement {
height: 400px; /* set to your height */
width: 400px; /* set to your width */
overflow-x: auto; /* can be auto, scroll or hidden */
overflow-y: auto;
}
Run Code Online (Sandbox Code Playgroud)
你可以使用一个div,它具有指定的width和heightcss值为overflowto auto.
使用iframe执行此操作在以下方面具有过度杀伤力: