On Sep 28, 2007, at 2:43 AM, Bas V wrote:

So far no problem... however, in Firefox, Internet Explore etc, the y-scroll bar shows on PC and Mac but in Safari it doesn't show the box's scroll bar, why????

Here is the code I am using:

In the style sheet:

#photos {
...
    overflow-y:scroll;
    overflow-x:hidden;
}

Safari 2.0 and older do _not_ understand overflow-y and overflow-x. It is not part of CSS 2.1, but in a draft CSS 3 module.
Afaik, Opera 9.23 and older do not understand that either.

You could try:
#photos {
overflow:auto; /* <---- providing fall back for older browsers */
overflow-y:scroll;
overflow-x:hidden;
}

Philippe
---
Philippe Wittenbergh
<http://emps.l-c-n.com>





*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to