tags:

views:

1320

answers:

3

Does safari and chrome support overflow? IE 6 or above, does it match with overflow correctly?

+1  A: 

the answer is yes

The overflow property is supported in all major browsers.

Note: Internet Explorer does not support the property value "inherit".

link: http://www.w3schools.com/Css/pr_pos_overflow.asp

Haim Evgi
+4  A: 

Yes. You may want to look at this CSS browser compatibility table (search for "overflow" in the page).

Edit: As stated in the chart,

IE 5/6 doesn’t implement overflow: visible correctly.

Newer versions do.

streetpc
+1 - quirksmode is awesome
Dan F
A: 

Internet explore has problems with overflow:hidden; when the element has percentage dimensions. To fix this you need to also put a position:relative; on the element for it to work.

Matthew James Taylor