Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Killerbee_007 #1
Height problem
We need to find a solution for this problem for school:
My HTML-code says that the height of my table is set on 100%, but when I
open my website in Internet Explorer, I don't see that the table fills the
whole screen...
Hope I'll get the answer soon,
NC.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>hoogte</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
background-color: #CCCCCC;
}
-->
</style></head>
<body>
<table width="750" height="100%" border="0" align="center" cellspacing="0"
bordercolor="#ECE9D8">
<tr bordercolor="#3399CC" bgcolor="#3399CC">
<td width="100"> </td>
<td width="650"><h3>HOOFDING</h3></td>
</tr>
<tr>
<td width="100" valign="top" bordercolor="#3399CC" bgcolor="#3399CC"<td width="650" valign="top" bordercolor="#FFFFFF" bgcolor="#FFFFFF"><h3>LINKS</h3></td></tr>><h3>INHOUD</h3></td>
</table>
</body>
</html>
Killerbee_007 Guest
-
Pbm with Height
Hi Buddies, I have a strange pbm here. I have one Application with a height of 5000 px(its needed). Inside i have one Panel with a height of 4000... -
popup menu cell height problem
Hi. I'm trying to create a popup menu with the "wizard" in Dreamweaver MX. It does most of what I want, but there's one problem: some menu items are... -
height 100%
hi, i need to make a table of 9 squares. this explains it better http://www.othersidecreation.com/test.html now, the code works on internet... -
dynamic text field height problem
hi, i dont remember having issues with this, but recently it's been constantly happening to me.. everytime i try to load external text through a... -
height of swf
can I dynamic adjust height of swf in browser I do not want to scale swf, I would like to increase hight of "work area" (main stage) fg I have... -
Murray *TMM* #2
Re: Height problem
Here's the deal.
A doctype on an HTML page tells the browser how to render the page. Yours
tells the browser to render the page in standards mode. In standards mode,
the browsers all render the same (so they say - but in practice, while not
true, it's much more uniform).
Table height is invalid HTML. It always has been - it was never a part of
HTML's specs.
Browsers in quirks mode will try to render table heights. Browsers in
standards mode willl not.
Geddit?
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"Killerbee_007" <webforumsuser@macromedia.com> wrote in message
news:dfsm8g$25$1@forums.macromedia.com...> We need to find a solution for this problem for school:
> My HTML-code says that the height of my table is set on 100%, but when I
> open my website in Internet Explorer, I don't see that the table fills the
> whole screen...
>
>
> Hope I'll get the answer soon,
> NC.
>
>
>
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <title>hoogte</title>
> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
> <style type="text/css">
> <!--
> body {
> background-color: #CCCCCC;
> }
> -->
> </style></head>
>
>
> <body>
> <table width="750" height="100%" border="0" align="center" cellspacing="0"
> bordercolor="#ECE9D8">
> <tr bordercolor="#3399CC" bgcolor="#3399CC">
> <td width="100"> </td>
> <td width="650"><h3>HOOFDING</h3></td>
> </tr>
> <tr>
> <td width="100" valign="top" bordercolor="#3399CC" bgcolor="#3399CC"> <td width="650" valign="top" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> ><h3>LINKS</h3></td>> </tr>> ><h3>INHOUD</h3></td>
> </table>
> </body>
> </html>
>
Murray *TMM* Guest



Reply With Quote

