473,320 Members | 2,158 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Height of a table in %

I have simple html(aspx) page, but vertical height won't work.

Even if i had set the height of a table=100%, the table is not 100% height.

I spend a lot of time(my real page is more complicated) to figured it out that this won't work because of attribute of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

I have visual studio 2005 beta2 and it appends this attribute to every page.

How can I get rid of this attribute or how can I set that height of a table in % will work?
Code of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head></head>
<body>
<table border=1 ><tr valign=top><td>
<table height=100% border=1 style="border-color:red">
<tR><td valign=top>
<table >
<tR><td height=5></td></tr>
</table>
<table border=1>
<tR><td>test</td></tr>
</table>
</td></tr>
<tR><td valign=top >
<table border=1 height=100%>
<tR><td>test2</td></tr>
</table>
</td></tr>
</table>
</td>
<td>
<table>
<tR><td>
<table border=1>
<tR><td>test1</td></tr>
<tR><td>test2</td></tr>
<tR><td>test3</td></tr>
<tR><td>test4</td></tr>
<tR><td>test5</td></tr>
</table>
</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Nov 19 '05 #1
7 1754
The reason is your outter table is not 100%.
So the inner table is just spanning 100% of the outter table

try:

<table border=1 height="100%"><tr valign=top><td>
<table height=100% border=1 style="border-color:red">

ALso the <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> can just be removed off the page after its created, and visual studio won't put it back
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP14.phx.gbl...
I have simple html(aspx) page, but vertical height won't work.

Even if i had set the height of a table=100%, the table is not 100% height.

I spend a lot of time(my real page is more complicated) to figured it out that this won't work because of attribute of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

I have visual studio 2005 beta2 and it appends this attribute to every page.

How can I get rid of this attribute or how can I set that height of a table in % will work?
Code of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head></head>
<body>
<table border=1 ><tr valign=top><td>
<table height=100% border=1 style="border-color:red">
<tR><td valign=top>
<table >
<tR><td height=5></td></tr>
</table>
<table border=1>
<tR><td>test</td></tr>
</table>
</td></tr>
<tR><td valign=top >
<table border=1 height=100%>
<tR><td>test2</td></tr>
</table>
</td></tr>
</table>
</td>
<td>
<table>
<tR><td>
<table border=1>
<tR><td>test1</td></tr>
<tR><td>test2</td></tr>
<tR><td>test3</td></tr>
<tR><td>test4</td></tr>
<tR><td>test5</td></tr>
</table>
</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Nov 19 '05 #2
Thank you for your answer,

but even If outter table is 100% the inner table is not.

Just copy my code into notepad, save it as html file and try.

Any idea?

regards,SImon

"Grant Merwitz" <gr***@workshare.com> wrote in message news:uD**************@TK2MSFTNGP10.phx.gbl...
The reason is your outter table is not 100%.
So the inner table is just spanning 100% of the outter table

try:

<table border=1 height="100%"><tr valign=top><td>
<table height=100% border=1 style="border-color:red">

ALso the <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> can just be removed off the page after its created, and visual studio won't put it back
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP14.phx.gbl...
I have simple html(aspx) page, but vertical height won't work.

Even if i had set the height of a table=100%, the table is not 100% height.

I spend a lot of time(my real page is more complicated) to figured it out that this won't work because of attribute of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

I have visual studio 2005 beta2 and it appends this attribute to every page.

How can I get rid of this attribute or how can I set that height of a table in % will work?
Code of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head></head>
<body>
<table border=1 ><tr valign=top><td>
<table height=100% border=1 style="border-color:red">
<tR><td valign=top>
<table >
<tR><td height=5></td></tr>
</table>
<table border=1>
<tR><td>test</td></tr>
</table>
</td></tr>
<tR><td valign=top >
<table border=1 height=100%>
<tR><td>test2</td></tr>
</table>
</td></tr>
</table>
</td>
<td>
<table>
<tR><td>
<table border=1>
<tR><td>test1</td></tr>
<tR><td>test2</td></tr>
<tR><td>test3</td></tr>
<tR><td>test4</td></tr>
<tR><td>test5</td></tr>
</table>
</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Nov 19 '05 #3
Thats strange,
I set the outter table to height 100%, and it did nothing.
I then removed that line:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
and it worked perfectly

view attached
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP09.phx.gbl...
Thank you for your answer,

but even If outter table is 100% the inner table is not.

Just copy my code into notepad, save it as html file and try.

Any idea?

regards,SImon

"Grant Merwitz" <gr***@workshare.com> wrote in message news:uD**************@TK2MSFTNGP10.phx.gbl...
The reason is your outter table is not 100%.
So the inner table is just spanning 100% of the outter table

try:

<table border=1 height="100%"><tr valign=top><td>
<table height=100% border=1 style="border-color:red">

ALso the <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> can just be removed off the page after its created, and visual studio won't put it back
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP14.phx.gbl...
I have simple html(aspx) page, but vertical height won't work.

Even if i had set the height of a table=100%, the table is not 100% height.

I spend a lot of time(my real page is more complicated) to figured it out that this won't work because of attribute of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

I have visual studio 2005 beta2 and it appends this attribute to every page.

How can I get rid of this attribute or how can I set that height of a table in % will work?
Code of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head></head>
<body>
<table border=1 ><tr valign=top><td>
<table height=100% border=1 style="border-color:red">
<tR><td valign=top>
<table >
<tR><td height=5></td></tr>
</table>
<table border=1>
<tR><td>test</td></tr>
</table>
</td></tr>
<tR><td valign=top >
<table border=1 height=100%>
<tR><td>test2</td></tr>
</table>
</td></tr>
</table>
</td>
<td>
<table>
<tR><td>
<table border=1>
<tR><td>test1</td></tr>
<tR><td>test2</td></tr>
<tR><td>test3</td></tr>
<tR><td>test4</td></tr>
<tR><td>test5</td></tr>
</table>
</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Nov 19 '05 #4
I know, it's strange.

I'm looking everywhere to find the solution, but I'm stuck.

Does anybody know the solution (without java script)?

thank you,Simon

"Grant Merwitz" <gr***@workshare.com> wrote in message news:%2****************@tk2msftngp13.phx.gbl...
Thats strange,
I set the outter table to height 100%, and it did nothing.
I then removed that line:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
and it worked perfectly

view attached
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP09.phx.gbl...
Thank you for your answer,

but even If outter table is 100% the inner table is not.

Just copy my code into notepad, save it as html file and try.

Any idea?

regards,SImon

"Grant Merwitz" <gr***@workshare.com> wrote in message news:uD**************@TK2MSFTNGP10.phx.gbl...
The reason is your outter table is not 100%.
So the inner table is just spanning 100% of the outter table

try:

<table border=1 height="100%"><tr valign=top><td>
<table height=100% border=1 style="border-color:red">

ALso the <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> can just be removed off the page after its created, and visual studio won't put it back
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP14.phx.gbl...
I have simple html(aspx) page, but vertical height won't work.

Even if i had set the height of a table=100%, the table is not 100% height.

I spend a lot of time(my real page is more complicated) to figured it out that this won't work because of attribute of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

I have visual studio 2005 beta2 and it appends this attribute to every page.

How can I get rid of this attribute or how can I set that height of a table in % will work?
Code of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head></head>
<body>
<table border=1 ><tr valign=top><td>
<table height=100% border=1 style="border-color:red">
<tR><td valign=top>
<table >
<tR><td height=5></td></tr>
</table>
<table border=1>
<tR><td>test</td></tr>
</table>
</td></tr>
<tR><td valign=top >
<table border=1 height=100%>
<tR><td>test2</td></tr>
</table>
</td></tr>
</table>
</td>
<td>
<table>
<tR><td>
<table border=1>
<tR><td>test1</td></tr>
<tR><td>test2</td></tr>
<tR><td>test3</td></tr>
<tR><td>test4</td></tr>
<tR><td>test5</td></tr>
</table>
</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Nov 19 '05 #5
I narrowed it down to be particularly the line "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"

Visual Studio 2003 places just:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
at the top of the page, not the DTD reference.

Can you not just remove that line?

Do you need it in there, or does visual studio 2005 keep putting it back?
"simon" <si*********@stud-moderna.si> wrote in message news:uH**************@TK2MSFTNGP12.phx.gbl...
I know, it's strange.

I'm looking everywhere to find the solution, but I'm stuck.

Does anybody know the solution (without java script)?

thank you,Simon

"Grant Merwitz" <gr***@workshare.com> wrote in message news:%2****************@tk2msftngp13.phx.gbl...
Thats strange,
I set the outter table to height 100%, and it did nothing.
I then removed that line:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
and it worked perfectly

view attached
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP09.phx.gbl...
Thank you for your answer,

but even If outter table is 100% the inner table is not.

Just copy my code into notepad, save it as html file and try.

Any idea?

regards,SImon

"Grant Merwitz" <gr***@workshare.com> wrote in message news:uD**************@TK2MSFTNGP10.phx.gbl...
The reason is your outter table is not 100%.
So the inner table is just spanning 100% of the outter table

try:

<table border=1 height="100%"><tr valign=top><td>
<table height=100% border=1 style="border-color:red">

ALso the <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> can just be removed off the page after its created, and visual studio won't put it back
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP14.phx.gbl...
I have simple html(aspx) page, but vertical height won't work.

Even if i had set the height of a table=100%, the table is not 100% height.

I spend a lot of time(my real page is more complicated) to figured it out that this won't work because of attribute of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

I have visual studio 2005 beta2 and it appends this attribute to every page.

How can I get rid of this attribute or how can I set that height of a table in % will work?
Code of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head></head>
<body>
<table border=1 ><tr valign=top><td>
<table height=100% border=1 style="border-color:red">
<tR><td valign=top>
<table >
<tR><td height=5></td></tr>
</table>
<table border=1>
<tR><td>test</td></tr>
</table>
</td></tr>
<tR><td valign=top >
<table border=1 height=100%>
<tR><td>test2</td></tr>
</table>
</td></tr>
</table>
</td>
<td>
<table>
<tR><td>
<table border=1>
<tR><td>test1</td></tr>
<tR><td>test2</td></tr>
<tR><td>test3</td></tr>
<tR><td>test4</td></tr>
<tR><td>test5</td></tr>
</table>
</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Nov 19 '05 #6

What does it mean? I guess that it stand there for some purpose and maybe some controls require it?

But I found something interesting:

if you append also the line:
<?xml version="1.0" encoding="iso-8859-1"?>

than it works.

Do you know why?

regards,
Simon
"Grant Merwitz" <gr***@workshare.com> wrote in message news:Oc****************@TK2MSFTNGP09.phx.gbl...
I narrowed it down to be particularly the line "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"

Visual Studio 2003 places just:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
at the top of the page, not the DTD reference.

Can you not just remove that line?

Do you need it in there, or does visual studio 2005 keep putting it back?
"simon" <si*********@stud-moderna.si> wrote in message news:uH**************@TK2MSFTNGP12.phx.gbl...
I know, it's strange.

I'm looking everywhere to find the solution, but I'm stuck.

Does anybody know the solution (without java script)?

thank you,Simon

"Grant Merwitz" <gr***@workshare.com> wrote in message news:%2****************@tk2msftngp13.phx.gbl...
Thats strange,
I set the outter table to height 100%, and it did nothing.
I then removed that line:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
and it worked perfectly

view attached
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP09.phx.gbl...
Thank you for your answer,

but even If outter table is 100% the inner table is not.

Just copy my code into notepad, save it as html file and try.

Any idea?

regards,SImon

"Grant Merwitz" <gr***@workshare.com> wrote in message news:uD**************@TK2MSFTNGP10.phx.gbl...
The reason is your outter table is not 100%.
So the inner table is just spanning 100% of the outter table

try:

<table border=1 height="100%"><tr valign=top><td>
<table height=100% border=1 style="border-color:red">

ALso the <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> can just be removed off the page after its created, and visual studio won't put it back
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP14.phx.gbl...
I have simple html(aspx) page, but vertical height won't work.

Even if i had set the height of a table=100%, the table is not 100% height.

I spend a lot of time(my real page is more complicated) to figured it out that this won't work because of attribute of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

I have visual studio 2005 beta2 and it appends this attribute to every page.

How can I get rid of this attribute or how can I set that height of a table in % will work?
Code of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head></head>
<body>
<table border=1 ><tr valign=top><td>
<table height=100% border=1 style="border-color:red">
<tR><td valign=top>
<table >
<tR><td height=5></td></tr>
</table>
<table border=1>
<tR><td>test</td></tr>
</table>
</td></tr>
<tR><td valign=top >
<table border=1 height=100%>
<tR><td>test2</td></tr>
</table>
</td></tr>
</table>
</td>
<td>
<table>
<tR><td>
<table border=1>
<tR><td>test1</td></tr>
<tR><td>test2</td></tr>
<tR><td>test3</td></tr>
<tR><td>test4</td></tr>
<tR><td>test5</td></tr>
</table>
</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Nov 19 '05 #7
What i remember from university

DTD stands for Date Type Definition, and was used with Xml files to standardise it or something.
(hmm, clearly my memory of university didn't stick)

But its probably using that defintion to set some standard in your HTML file (or rather XTHML - extended Html)
But i'm not that well versed in .NET 2.0 yet - so who knows what its trying to do.

Maybe start a new post asking what that line means and the effect it had on your page,
will be interesting to see why
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@tk2msftngp13.phx.gbl...

What does it mean? I guess that it stand there for some purpose and maybe some controls require it?

But I found something interesting:

if you append also the line:
<?xml version="1.0" encoding="iso-8859-1"?>

than it works.

Do you know why?

regards,
Simon
"Grant Merwitz" <gr***@workshare.com> wrote in message news:Oc****************@TK2MSFTNGP09.phx.gbl...
I narrowed it down to be particularly the line "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"

Visual Studio 2003 places just:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
at the top of the page, not the DTD reference.

Can you not just remove that line?

Do you need it in there, or does visual studio 2005 keep putting it back?
"simon" <si*********@stud-moderna.si> wrote in message news:uH**************@TK2MSFTNGP12.phx.gbl...
I know, it's strange.

I'm looking everywhere to find the solution, but I'm stuck.

Does anybody know the solution (without java script)?

thank you,Simon

"Grant Merwitz" <gr***@workshare.com> wrote in message news:%2****************@tk2msftngp13.phx.gbl...
Thats strange,
I set the outter table to height 100%, and it did nothing.
I then removed that line:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
and it worked perfectly

view attached
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP09.phx.gbl...
Thank you for your answer,

but even If outter table is 100% the inner table is not.

Just copy my code into notepad, save it as html file and try.

Any idea?

regards,SImon

"Grant Merwitz" <gr***@workshare.com> wrote in message news:uD**************@TK2MSFTNGP10.phx.gbl...
The reason is your outter table is not 100%.
So the inner table is just spanning 100% of the outter table

try:

<table border=1 height="100%"><tr valign=top><td>
<table height=100% border=1 style="border-color:red">

ALso the <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> can just be removed off the page after its created, and visual studio won't put it back
"simon" <si*********@stud-moderna.si> wrote in message news:%2****************@TK2MSFTNGP14.phx.gbl...
I have simple html(aspx) page, but vertical height won't work.

Even if i had set the height of a table=100%, the table is not 100% height.

I spend a lot of time(my real page is more complicated) to figured it out that this won't work because of attribute of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

I have visual studio 2005 beta2 and it appends this attribute to every page.

How can I get rid of this attribute or how can I set that height of a table in % will work?
Code of a page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head></head>
<body>
<table border=1 ><tr valign=top><td>
<table height=100% border=1 style="border-color:red">
<tR><td valign=top>
<table >
<tR><td height=5></td></tr>
</table>
<table border=1>
<tR><td>test</td></tr>
</table>
</td></tr>
<tR><td valign=top >
<table border=1 height=100%>
<tR><td>test2</td></tr>
</table>
</td></tr>
</table>
</td>
<td>
<table>
<tR><td>
<table border=1>
<tR><td>test1</td></tr>
<tR><td>test2</td></tr>
<tR><td>test3</td></tr>
<tR><td>test4</td></tr>
<tR><td>test5</td></tr>
</table>
</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Nov 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: John | last post by:
I have a table with two rows. On the first row is a text box and in the second row is an image. I have set the table cellpadding to 0 and cellspacing to 0. The table is leaving extra spaces in the...
11
by: Rithish | last post by:
If I have something like, <TABLE><TR><TD STYLE="'Font-Family:Arial'">Arial Text</TD></TR></TABLE> What would be the height of the cell? I believe it would be corresponding to the font used......
3
by: rufus | last post by:
I am created a table dynamically and I have wrapped it in a div tag so that the user can scroll the table horizontally ie I have added an overflow property to the div. I dont want the user to be...
2
by: Steve Bottoms | last post by:
Hi, all! Using VB as code-behind in asp.net page... I have a TABLE control which I'm building dynamically. After the table is built, I'm trying to retrieve the HEIGHT property of that table...
4
by: reycri | last post by:
I have a page that works as I intend in IE but not in Firefox: <html> <head> <title>Overflow Test</title> </head> <body style='overflow:hidden; margin:0; padding:0;'> <table border='0'...
3
by: Q. John Chen | last post by:
I have a page contains a table (e.g a 3-row table). The middle row is for the content and the bottom row is for footer notes. When the middle row does not have much info, the footer goes way too...
7
by: Phlip | last post by:
HTMLers: Start with this simple HTML: <table border='1' width='100%' height='90%'> <tr><td> <div style='overflow: auto'> </div> </td></tr> </table>
2
by: JMT | last post by:
Hello, I get some dynamic controls (ASP .Net) inside a table, the height property of the table is variable according the controls loaded, so I need to know the final table height, this value...
4
by: AAaron123 | last post by:
<body runat="server" id="MainBody"> <form id="form1" runat="server" style="background-color:green; width: 100%; height: 100%"> <br /> Table1" runat="server" Style="background-color:Yellow;...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.