Can URL fragments affect CSS behavior? For instance, let's consider a sample page at:
http://example.boom/is_this_a_bug.html
. You can view the code for this page on https://gist.github.com/3777018
Upon loading the page with the given URL, the elements with the class .tab-pane
do not appear correctly because they extend beyond their container, which has an overflow: hidden
property.
Interestingly, if we load the page with a valid fragment added to the URL (e.g., #00
), the .tab-pane
becomes visible, seemingly disregarding the left:100%
property. Clicking on the button removes and then resets left:100%
, resulting in the overflowing tab-panes once again.
This behavior has been noted in Firefox 15.0.1 and Chromium 18.0.1025.168 browsers on Ubuntu 12.04.
Do you have any insights into why this is happening? Is this a known issue, or perhaps documented elsewhere?
Thank you,
Manuel.