Well, I finally took the plunge. I'm using CSS in my page.
Frontpage generated a nice external style sheet for me, and I was wondering if I could get it looked at, to make sure I did everything correct.
<!-- m --><a class="postlink" href="http://www.team847.com/CSS2.css">http://www.team847.com/CSS2.css</a><!-- m -->
Also, I thought this forum would be a good place for me to bring this up.
Look at this page, and read on. (<!-- m --><a class="postlink" href="http://www.team847.com/NEW.html">http://www.team847.com/NEW.html</a><!-- m -->)
I want the table that this page is arranged in to vertically fill the entire page. Furthermore, I want the button underneath the forum button to vertically fill the cell. Then with the dropdown menu, I want the button to change height so the menu fits in the cell. All the while, the table remains to stay the same height.
Frontpage just won't let me do that. Can someone help me?A 100% height table is in relation to the contents and not the canvas!
Plus your external CSS is erroneous and contains html plus you have no width unit. <!-- m --><a class="postlink" href="http://jigsaw.w3.org/css-validator/It's">http://jigsaw.w3.org/css-validator/It's</a><!-- m --> not a FrontPage bug, it's a CSS one. A setting of height: 100% is not supported. As Robert wrote, a "liquid" height is set by the actual content, not by the space available on the viewer's screen.
David Harrison suggested this article to me: <!-- m --><a class="postlink" href="http://www.alistapart.com/articles/fauxcolumns/">http://www.alistapart.com/articles/fauxcolumns/</a><!-- m -->. It might help you create a "fake" height of 100%.
Good Luck!
KDLAKDLA: There's a way, but I think it automatically creates a vertical scrollbar.
<style type="text/css">
<![CDATA[
table {
position: absolute;
height: 100%;
}
]]>
</style>
I'm not sure if you can center it when you do that, but you can make the table as high as the browser window.Thanks, Sanim - I'm sure Sunny G will appreciate your quick and helpful suggestion!
I was just wondering, though, if all browsers recognize that method....
Netscape is a stinker when it comes to positioning.
KDLAOk... I see what you guys mean. My image needs to be 100% high but it can't be a background image. It's just a regular IMG SRC image.Hey cool! I'll give that a try! Just a sec......
=======5 minutes later========
I put it in the HTML of the page and there was no change...
Hold on while I put it in the external CSS.
=======30 seconds, and one realization later========
Oh gosh. I just realized that what I don't want is the table to be 100% high, but the image inside it to be 100% high, forcing the table to adjust to it. Thanks Sanim for the help! I'll see if I can use that in the future.
Frontpage generated a nice external style sheet for me, and I was wondering if I could get it looked at, to make sure I did everything correct.
<!-- m --><a class="postlink" href="http://www.team847.com/CSS2.css">http://www.team847.com/CSS2.css</a><!-- m -->
Also, I thought this forum would be a good place for me to bring this up.
Look at this page, and read on. (<!-- m --><a class="postlink" href="http://www.team847.com/NEW.html">http://www.team847.com/NEW.html</a><!-- m -->)
I want the table that this page is arranged in to vertically fill the entire page. Furthermore, I want the button underneath the forum button to vertically fill the cell. Then with the dropdown menu, I want the button to change height so the menu fits in the cell. All the while, the table remains to stay the same height.
Frontpage just won't let me do that. Can someone help me?A 100% height table is in relation to the contents and not the canvas!
Plus your external CSS is erroneous and contains html plus you have no width unit. <!-- m --><a class="postlink" href="http://jigsaw.w3.org/css-validator/It's">http://jigsaw.w3.org/css-validator/It's</a><!-- m --> not a FrontPage bug, it's a CSS one. A setting of height: 100% is not supported. As Robert wrote, a "liquid" height is set by the actual content, not by the space available on the viewer's screen.
David Harrison suggested this article to me: <!-- m --><a class="postlink" href="http://www.alistapart.com/articles/fauxcolumns/">http://www.alistapart.com/articles/fauxcolumns/</a><!-- m -->. It might help you create a "fake" height of 100%.
Good Luck!
KDLAKDLA: There's a way, but I think it automatically creates a vertical scrollbar.
<style type="text/css">
<![CDATA[
table {
position: absolute;
height: 100%;
}
]]>
</style>
I'm not sure if you can center it when you do that, but you can make the table as high as the browser window.Thanks, Sanim - I'm sure Sunny G will appreciate your quick and helpful suggestion!
I was just wondering, though, if all browsers recognize that method....
Netscape is a stinker when it comes to positioning.
KDLAOk... I see what you guys mean. My image needs to be 100% high but it can't be a background image. It's just a regular IMG SRC image.Hey cool! I'll give that a try! Just a sec......
=======5 minutes later========
I put it in the HTML of the page and there was no change...
Hold on while I put it in the external CSS.
=======30 seconds, and one realization later========
Oh gosh. I just realized that what I don't want is the table to be 100% high, but the image inside it to be 100% high, forcing the table to adjust to it. Thanks Sanim for the help! I'll see if I can use that in the future.