PDA

View Full Version : حذف scrollbar افقی ؟



sasan_vm
شنبه 01 مهر 1385, 09:48 صبح
سلام

چطور می شود scrollbar افقی را از روی یک iFrame حذف کرد ؟

sarasara
یک شنبه 02 مهر 1385, 10:57 صبح
<frameset cols="150,*">

<frame src="test5.htm" name="links" scrolling="no">
<frame src="test3.htm" name="main" scrolling="no">

</frameset>

این رو ببین:
http://www.htmlhelp.com/faq/html/frames.html

البته مطمئن نیستم جوابت رو درست داده باشم!

sasan_vm
دوشنبه 03 مهر 1385, 00:57 صبح
<frameset cols="150,*">

<frame src="test5.htm" name="links" scrolling="no">
<frame src="test3.htm" name="main" scrolling="no">

</frameset>

این رو ببین:
http://www.htmlhelp.com/faq/html/frames.html

البته مطمئن نیستم جوابت رو درست داده باشم!

خصوصیت scrolling=no هر دو scroll افقی و عمودی را حذف میکند، لینکی که معرفی
کردید این مسئله را توضیح داده:


11.10. How do I make a frame with a vertical scrollbar but without a horizontal scrollbar?
The only way to have a frame with a vertical scrollbar but without a horizontal scrollbar is to define the frame with SCROLLING="auto" (the default), and to have content that does not require horizontal scrolling. There is no way to specify that a frame should have one scrollbar but not the other. Using SCROLLING="yes" will force scrollbars in both directions (even when they aren't needed), and using SCROLLING="no" will inhibit all scrollbars (even when scrolling is necessary to access the frame's content). There are no other values for the SCROLLING attribute.

sarasara
دوشنبه 10 مهر 1385, 08:20 صبح
ببین این به دردت می خوره:

<frame style="overflow: auto; overflow-x: auto; overflow-y:hidden; height: [x]; width: auto;"></iframe>

x = whatever value you want.