2、给dom元素设置相应的宽度,可以用style中的width。
3、再给dom元素设置overflow属性,水平滚动条就是overflow-x:scroll。这样当元素中的内容超出设置的宽度时就会出现滚动条。
示例:
<div style="overflow-x:scrollwidth:200pxwhite-space:nowrap">当内容超出设定的宽度时自动出现横向滚动条</div>
Dreamweaver 8如何给框架集添加滚动条?只要右边有滚动条 要在设计试图完成要求
<frameset rows="210%,300%,50%" cols="*" frameborder="0" style="overflow:scroll" >
<frame src="top.html" name="topFrame" scrolling="no" marginheight="0" noresize="true" marginwidth="0"/>
<frame src="zhong.html" name="leftFrame" scrolling="auto" marginwidth="0" noresize="true" marginheight="0" />
<frame src="footer.html" name="footerFrame" scrolling="auto" marginwidth="0" noresize="true" marginheight="0"/>
</frameset>
<noframes></noframes>
在frameset 标签内加上style="overflow:scroll"这个样式就可以出现右边的整页滚动条了
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)