Closed
Bug 101255
Opened 24 years ago
Closed 24 years ago
text at bottom of page is cut off
Categories
(Core :: DOM: CSS Object Model, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: matthewm, Assigned: jst)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.4) Gecko/20010917
BuildID: 2001091712
when the height of the mozilla window is smaller than the page (requiring a
scrollbar) the text at the bottom of the page (the copyright notice) is cut off
the stylesheet for this page is http://home.twcny.rr.com/mboedicker/mboedick.css
Reproducible: Always
Steps to Reproduce:
1.open http://home.twcny.rr.com/mboedicker/links.html
2.reduce the browser window height until a scrollbar appears
3.scroll down to the bottom of the page
Actual Results: the copyright notice at the bottom of the page is cut off
Expected Results: when the page requires scrolling, the bottom should look the
same as it looks when the the browser window is large enough to see the entire
pgae at once
| Reporter | ||
Comment 1•24 years ago
|
||
believe this was problem with stylesheet, please ignore
Status: UNCONFIRMED → RESOLVED
Closed: 24 years ago
Resolution: --- → INVALID
Win2k, Build 20010921
I think the setting the position to relative and offsetting the main div from
the top by 5% is causing the copyright notice to go off the screen.
(The notice was always visible for me, but as I as the height of the window
grew, 5% became bigger and more of the bottom was cut off. When the window was
very small horizontally, i could see the bottom of the main div's border)
If you just want padding on the left and top sides try:
DIV.main { background-color : #FFFFFF;
margin-left : 10%;
margin-top : 5%;
width : 80%;
border-style : groove;
}
You need to log in
before you can comment on or make changes to this bug.
Description
•