Why can't I change height with <col width="50" height="100">?

B

Bernd Meier

Why has the value of height no consequences in the below example?
If I change width I get changes but not if I change height.

<html>
<head>
<title>HTML-Test</title>
</head>
<body>
<h3>HTML-Test</h3>
<table border="5">
<colgroup>
<col width="50" height="100">
<col width="50" height="100">
<col width="50" height="100">
</colgroup>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
</table>
</body>
</html>
 
B

Bernd Meier

Why has the value of height no consequences in the below example?
Becuase there is no height attribute for the col element.

Is there another element for col to change the height?

Or is there no possibility to do it because auf logical reseans?

Because if I would change the cell hights in one column I also have to
change
the cell hights of the next columns?
 
J

John Hosking

Bernd said:
Why has the value of height no consequences in the below example?
If I change width I get changes but not if I change height.

Because you're making things up.

Prefatory remark 1: Providing a URL is better than posting code, because
1) the URL is usually shorter,
2) the URL lets us see, for example, what doctype you're using, and
3) we can immediately try out your code in our browsers, without
copy-and-paste or guessing from just looking at your code.

Prefatory remark 2: Below I mention the recommmendation for HTML 4.01
because I don't know what you think you're using. No URL, you see.

<colgroup>
<col width="50" height="100">

Take a look at the W3C's description of the <col> element at
<http://www.w3.org/TR/html401/struct/tables.html#h-11.2.4.2>.
There is no height attribute for <col>. You've just made it up.

You'd have to specify the width directly to the TDs (and hope for the
best), although in practice you can usually specify width for <TD>
elements in one row, and all the columns in the rest of the table make
similar use of those widths (depending on the actual content, as always).
 
J

Jukka K. Korpela

Scripsit Bernd Meier:
Is there another element for col to change the height?
No.

Or is there no possibility to do it because auf logical reseans?

One might say so. Why would you set the height of columns instead of
simply setting the height of the table?
Because if I would change the cell hights in one column I also have to
change
the cell hights of the next columns?

Pardon? Did you expect to change the height of each _cell_ in the
columns?

The practical way to make the cells in a column have the same width is
to use a class="..." attribute for the cell elements and to set the
height of the cells in a style sheet.
 
A

Adrienne Boswell

Gazing into my crystal ball I observed "Bernd Meier" <ndkwinklask263
@yahoo.de> writing in
Is there another element for col to change the height?

Or is there no possibility to do it because auf logical reseans?

Because if I would change the cell hights in one column I also have to
change
the cell hights of the next columns?

Because tables are for tabular data, there really is no reason for a
height attribute - rows expand/shrink to fit their contents, as it
should be. Authors got into the bad habit of using tables for
positioning content - but that is not what tables are for. HTML should
not be presentational - that's what CSS is for.

Unless you have a _very_ good reason for setting height, let the table
do what it supposed to do.
 
G

GTalbot

Why has the value of height no consequences in the below example?
If I change width I get changes but not if I change height.

<html>

No doctype declaration. You will trigger modern browsers into quirks
mode, not standards compliant rendering mode.

Using Web Standards in your Web Pages: Making your page using web
standards - how to
http://developer.mozilla.org/en/doc...Making_your_page_using_web_standards_-_how_to

As others told you, there is no height attribute for <col>. And the
styling the <col> in Internet Explorer 6 and in Internet Explorer 7 is
rather unreliable, prone to layout bugs.

http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/#bug25

http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/#bug28

Looking for a constrained height on a table is most likely misusing
tables to begin with. Adrienne B. gave you an excellent answer,
exactly the kind of answer I would have given you.

If you want help with your webpage design, then start with providing
us with an url and a short, descriptive, meaningful explanation of
what you are truly trying to achieve, with natural words, not with
code explanations. Maybe you want/need a navigational horizontal list
of 3 links... we don't know..

Otherwise:

Table-based webpage design versus CSS-based webpage design: resources,
explanations and tutorials
http://www.gtalbot.org/NvuSection/NvuWebDesignTips/TableVsCSSDesign.html

CSS webpage templates
http://www.gtalbot.org/NvuSection/NvuWebDesignTips/WebDesignResources.html#CSSWebpageTemplates

CSS webpage templates
http://fabiwan.kenobi.free.fr/css/PageLayout.html

CSS webpage templates
http://fabiwan.kenobi.free.fr/css/PageLayout2.html

KazGarden (CSS webpage templates)
http://www.gimp-werkstatt.de/kaze/

Regards,

Gérard
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,731
Messages
2,569,432
Members
44,834
Latest member
BuyCannaLabsCBD

Latest Threads

Top