Hello world ,
I've got a page that is vertically unscrollable, since i've put :
* {overflow:hidden}
The problem is that overflow:hidden is useful for compatibility with IE.
Even if i put overflow:visible to all the other properties, no scrollbar will display.
You can see my page here (remove the "***")
Thanx
Well * is the universal
Well * is the universal identifier which means that it sets it's properties to ALL elements. I would suggest you put the overflow: hidden in the body { } instead.
Eliminate it. I know of no
Eliminate it. I know of no sane reason to use *{overflow: hidden;}. In fact, move all those properties to the appropriate element. There are folks that like *{margin: 0;}, but that's not really necessary.
cheers,
gary
Thank you. i've removed the
Thank you. i've removed the *{overflow:hidden} and put it at each property and it works, now !