I used to be pretty good with HTML, but I am having a problem.
I need a table (75x100 pixels) with three rows: row 1 is full width, row two has two columns col1 is 18 pixels col 2 67 pixels and row three is full width of 75 pixels.
Any help would be appreciated.
TIA
Need HTML Help
-
- 2StarLounger
- Posts: 125
- Joined: 17 Feb 2010, 16:25
Need HTML Help
PaulW
Lost Wages, NV USA
(former Cobol Programmer)
Lost Wages, NV USA
(former Cobol Programmer)
-
- Administrator
- Posts: 79560
- Joined: 16 Jan 2010, 00:14
- Status: Microsoft MVP
- Location: Wageningen, The Netherlands
-
- 2StarLounger
- Posts: 125
- Joined: 17 Feb 2010, 16:25
Re: Need HTML Help
Hi Hans,
Thanks for the math catch. The problem is that I cannot get the colspan to work so that when I get to row two the rowtwo/coltwo size is not working and the rowtwo/coltwo column width is about the same size as rowtwo/colone.
I never had this problem with "front page"
TIA again
Thanks for the math catch. The problem is that I cannot get the colspan to work so that when I get to row two the rowtwo/coltwo size is not working and the rowtwo/coltwo column width is about the same size as rowtwo/colone.
I never had this problem with "front page"
TIA again
PaulW
Lost Wages, NV USA
(former Cobol Programmer)
Lost Wages, NV USA
(former Cobol Programmer)
-
- Administrator
- Posts: 79560
- Joined: 16 Jan 2010, 00:14
- Status: Microsoft MVP
- Location: Wageningen, The Netherlands
Re: Need HTML Help
It would be better to use CSS for this, but here is a 'classic' HTML solution:
It looks like this:
Code: Select all
<html>
<body>
<table border=1>
<tr>
<td align=center width=85 colspan=2>A</td>
</tr>
<tr>
<td align=center width=18>B</td>
<td align=center width=67>C</td>
</tr>
<tr>
<td align=center width=85 colspan=2>D</td>
</tr>
</table>
</body>
</html>
You do not have the required permissions to view the files attached to this post.
Best wishes,
Hans
Hans
-
- 2StarLounger
- Posts: 125
- Joined: 17 Feb 2010, 16:25
Re: Need HTML Help
Hans,
As usual you have come to the rescue. Thank you so much for your assistance.
Hopefully I can start from your concise tutelage.
Thanks again.
As usual you have come to the rescue. Thank you so much for your assistance.
Hopefully I can start from your concise tutelage.
Thanks again.
PaulW
Lost Wages, NV USA
(former Cobol Programmer)
Lost Wages, NV USA
(former Cobol Programmer)