I'd like to put this properties for a div:
.content {
position: relative;
overflow-y : auto;
overflow-x: visible;
}
According to this page, if one is specified as 'visible' and the other is 'scroll' or 'auto', then 'visible' is set to 'auto'. So it's seem to be impossible to use simultaneously an overflow-y:auto and an overflow-x:visible.
However, I need to put this properties for a website, is there a way to do it ?
Vanessa found the answer by her own. Here it is:
OK, I fixed the problem :) If anyone has this kind of problems : don't forget to remove the relative position of the parent element (this which have the overflow property) : the absolutive div will be placed according the parent div which have the relative position. If not, it will be placed according to body ! – Vanessa Jan 19 '12 at 5:38