Hi,
I am using overflow-x:hidden; in css to get rid of the horizontal scroll bar in a pop up window. It works fine on pcs, but not on a mac, is there a compatible mac version?
thanksThere is no "overflow-x:hidden;" however there is 'overflow: hidden'.You need to hide the overflow-x and overflow-y in the HTML if u want it to validate. It's IE code so there's no equivalent AFAIK.
<!--[if IE]>
<style type="text/css" media="screen">
body
{
overflow-y: hidden;
}
div.content
{
height: 100%;
overflow-y: auto;
overflow-x: hidden;
}
</style>
<![endif]-->
I am using overflow-x:hidden; in css to get rid of the horizontal scroll bar in a pop up window. It works fine on pcs, but not on a mac, is there a compatible mac version?
thanksThere is no "overflow-x:hidden;" however there is 'overflow: hidden'.You need to hide the overflow-x and overflow-y in the HTML if u want it to validate. It's IE code so there's no equivalent AFAIK.
<!--[if IE]>
<style type="text/css" media="screen">
body
{
overflow-y: hidden;
}
div.content
{
height: 100%;
overflow-y: auto;
overflow-x: hidden;
}
</style>
<![endif]-->