b*****o 发帖数: 284 | 1 I am writing a web page. I want to have a paragraph of copyright info always
stay at the bottom of the page whatever you resize it. Thanks. |
a*******t 发帖数: 891 | 2 use frame?
【在 b*****o 的大作中提到】 : I am writing a web page. I want to have a paragraph of copyright info always : stay at the bottom of the page whatever you resize it. Thanks.
|
c****n 发帖数: 89 | 3 use a table to divide your page, and set the height property of the table to
100% height(?). Put one cell with the last line, and make it adjust to the
bottom, and then write your copyright info in this cell.
【在 b*****o 的大作中提到】 : I am writing a web page. I want to have a paragraph of copyright info always : stay at the bottom of the page whatever you resize it. Thanks.
|
c****n 发帖数: 89 | 4 BTW. I supposed you r using frontpage..
【在 c****n 的大作中提到】 : use a table to divide your page, and set the height property of the table to : 100% height(?). Put one cell with the last line, and make it adjust to the : bottom, and then write your copyright info in this cell.
|
b*****o 发帖数: 284 | 5 It seems that CSS can do it, but I do not remember how. Thanks for your endav
or. I write HTML manually. I do not like the garbage that those HTML editing
softwares put in my code.
【在 b*****o 的大作中提到】 : I am writing a web page. I want to have a paragraph of copyright info always : stay at the bottom of the page whatever you resize it. Thanks.
|
c**t 发帖数: 2744 | 6 position:absolute; bottom:0px
【在 b*****o 的大作中提到】 : I am writing a web page. I want to have a paragraph of copyright info always : stay at the bottom of the page whatever you resize it. Thanks.
|
b*****o 发帖数: 284 | 7 Thanks.
Both IE and Firefox behavior differently. In IE,
te; bottom:0px”>Bottom Paragraph is always away from other parts irrelev
ant to how you resize the Window. However, in Firefox, it sticks to the botto
m too, but it will overlap with other parts when you resize the Window really
small.
【在 c**t 的大作中提到】 : position:absolute; bottom:0px |