webkit - Chrome/Safari css issue with visibility + overflow -
i have block visibility: visible; overflow: hidden; inside element that's visibility: hidden. in ie/ff works expected, inner content shown , clickable, container not. however, in webkit browsers such chrome+safari, content not shown.
is webkit bug (if so, one?), , how can work around it?
demo: http://jsbin.com/egikap/1/edit
edit: css2.1 spec has this on visibility: hidden:
11.2 visibility:
visibilityproperty[...]
hidden
the generated box invisible (fully transparent, nothing drawn), still affects layout. furthermore, descendants of element visible if have
visibility: visible.
Comments
Post a Comment