Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

suppose you have some markup:

<div>
    <ul>
        <li>1</li> <li>2</li> <li>3</li>
        <li>4</li> <li>5</li> <li>6</li>
        <li>7</li> <li>8</li> <li>9</li>
        <li>1</li> <li>2</li> <li>3</li>
        <li>4</li> <li>5</li> <li>6</li>
        <li>7</li> <li>8</li> <li>9</li>
        <li>1</li> <li>2</li> <li>3</li>
        <li>4</li> <li>5</li> <li>6</li>
        <li>7</li> <li>8</li> <li>9</li>
    </ul>
</div>

styled:

ul
{
    white-space: nowrap;
    overflow-x: visible;
    overflow-y: hidden;
}
li
{
    display: inline-block;
}

When you view this. The <ul> has a scroll bar at the bottom even though I've specified visible and hidden values for overflow x/y.

(observed on Chrome 11 and opera (?))

I'm guessing there must be some w3c spec or something telling this to happen but for the life of me I can't work out why.

http://jsfiddle.net/3xv6A/

UPDATE:- I found a way to acheive the same result by adding another element wrapped around the ul. Check it out at: http://jsfiddle.net/3xv6A/9/

share|improve this question
What is your desired result? jsfiddle.net/Kyle_Sevenoaks/3xv6A/2 – Kyle Sevenoaks Jun 21 '11 at 7:51
@kyle it should look a little more like: jsfiddle.net/3xv6A/5 Unfortunately if i set overflow-x hidden; it removes the scroll but as i need the li elements to hide the border at the bottom so it gives that desired dashed effect. I don't uderstand why overflow-x: visible creates a scroll bar. It shouldn't afaik. – James Khoury Jun 21 '11 at 23:23

1 Answer

up vote 65 down vote accepted

After some serious searching it seems i've found the answer to my question:

from: http://www.brunildo.org/test/Overflowxy2.html

In Gecko, Safari, Opera, ‘visible’ becomes ‘auto’ also when combined with ‘hidden’ (in other words: ‘visible’ becomes ‘auto’ when combined with anything else different from ‘visible’). Gecko 1.8, Safari 3, Opera 9.5 are pretty consistent among them.

also the W3C spec says:

The computed values of ‘overflow-x’ and ‘overflow-y’ are the same as their specified values, except that some combinations with ‘visible’ are not possible: if one is specified as ‘visible’ and the other is ‘scroll’ or ‘auto’, then ‘visible’ is set to ‘auto’. The computed value of ‘overflow’ is equal to the computed value of ‘overflow-x’ if ‘overflow-y’ is the same; otherwise it is the pair of computed values of ‘overflow-x’ and ‘overflow-y’.

Short Version:

If you are using visible for either overflow-x or overflow-y and something other than visible for the other. The visible value is interpreted as auto.

share|improve this answer
2  
The spec makes no mention of the case where one is set to visible and the other is set to hidden, though. – BoltClock Oct 4 '12 at 14:27
Argh, I've run into this (spec?) bug too. Any workaround? Nevermind, I was able to put my problem elements in a sub-div that I added the overflow to, so that it wouldn't impact anything else. – Kevin Nov 18 '12 at 21:32
@kevin If you see the update in my question you'll see that i added an extra element. I can't specifically say this will work for you. jsfiddle.net/3xv6A/9 – James Khoury Nov 18 '12 at 23:15
3  
I understand that the W3C specifies it this way, but what is the motivation behind it? I find it quite weird and inconsistent behavior, resulting in messy work-arounds which require adding trivial HTML-elements. – Erwin Nov 26 '12 at 16:04
@Erwin I agree, Hopefully someone decides to update the spec. – James Khoury Nov 26 '12 at 23:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.