Here I found an example today:
http://www.meerschweinchen-ratgeber.de/forum/profile.php?mode=register&agreed=true
I can read 'rname' left of the first form field but I should see the
word:
"Benutzername"
I wanted to bet I will find the other page with the same problem - but
now it took me already too much time.
> I wanted to bet I will find the other page with the same problem - but
> now it took me already too much time.
yes - it's here.
I only watched it in FF now - well - I could start konqueror or
iceweasel aswell - both similar.
http://www.katschickistan.at/cms/?q=
Here maybe it is a desired layout.
But I am not able to read the letters in the very left area
This is a rather common problem caused by stupid authors who don't know how
to use CSS correctly, and are either too stupid or too lazy to test the
resulting page with a narrow browser window.
thank you rf for your comment!
this another example where I don't understand why they fail to
optimize it for FF:
http://www.evony.com/evonyb1t.html?Yahoonew4
what life is this?
> this another example where I don't understand why they fail to
> optimize it for FF:http://www.evony.com/evonyb1t.html?Yahoonew4
> what life is this?
Here the page is going out on the right
well, but I don't get any scrolling to the right!! huch! FF yeah yeah
yeah!
What *are* you talking about.
The effect you see here is not the fault of Firefox. It is, once again,
clueless authoring.
In fact FF is getting it right. It is IE that is getting it wrong. With
simply everything on the page being floated a scrollbar is not called for.
Clueless authoring.
> In fact FF is getting it right. It is IE that is getting it wrong. With
> simply everything on the page being floated a scrollbar is not called for.
> Clueless authoring.
Now the latest FF version on linux works different than on windows?
I don't get it right - sorry
Why not? I've never seen that in the specs anywhere.
> Clueless authoring.
The scrollbar is being removed on purpose, with this rule:
html {
overflow-x:hidden;
overflow-y:scroll;
}
in portal.css line 44. Setting overflow on the root element is supposed
to set it on the viewport (it's one of those things like body
backgrounds that after various strange rules are applied ends up being
applied to the viewport).
UAs must apply the 'overflow' property set on the root element to
the viewport. When the root element is an HTML "HTML" element or an
XHTML "html" element, and that element has an HTML "BODY" element or
an XHTML "body" element as a child, user agents must instead apply
the 'overflow' property from the first such child element to the
viewport, if the value on the root element is 'visible'. The
'visible' value when used for the viewport must be interpreted as
'auto'. The element from which the value is propagated must have a
used value for 'overflow' of 'visible'.
overflow-x and overflow-y (as opposed to just overflow) are CSS3, which
maybe IE doesn't support, or maybe it just doesn't let you change
overflow on the viewport.
Anyway, delete overflow-x: hidden and you can scroll right in FF.
NB: in theory you can actually set the viewport to overflow: visible,
although they say it's OK if that doesn't work.