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".
Haim Evgi
2009-06-25 09:58:03
+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
2009-06-25 10:03:20
+1 - quirksmode is awesome
Dan F
2009-06-25 10:06:09
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
2009-06-26 00:19:44