<TR style="height:100px"/> ... IE bug?

J

John MacIntyre

Hi,

Using the script below, when you click on the radio button beside click here
.... the first row shrinks.

Has anybody else ever experienced this?
Does anybody know of a logical explaination for this?

A co-worker told me it is not valid HTML. He may be right, but we both
agree; it's odd that IE would handle it when the form is loaded, but not
when the style changes. It's as if the developers writting the parser
accounted for it, but not the style developers.

Interested in hearing your input.

Regard,
John MacIntyre
VC++ / VB / ASP / Database Developer
http://www.johnmacintyre.ca

BTW-I am using IE 5.0

-----------------------------------------------------------------------
<HTML>
<HEAD>
</HEAD>
<BODY>

<HR>
<FORM id="frmMain" name="frmMain" TARGET="_self" METHOD=POST>
<TABLE width="100%">
<!-- Problems -->
<TR style="height:100px"/>
<!-- Works fine
<TR style="height:100px"><TD></TD></TR>
-->
<TR>
<TD>
<INPUT TYPE=RADIO onclick="frmMain.TXT_TEST.className = ''"> <-- Click
here<br>
<INPUT TYPE=TEXT ID=TXT_TEST NAME=TXT_TEST>
</TD>
</TR>
</TABLE>
</form>

</BODY>
</HTML>
 
J

Joe Earnest

Hi,

| Hi,
|
| Using the script below, when you click on the radio button beside click
here
| ... the first row shrinks.
|
| Has anybody else ever experienced this?
| Does anybody know of a logical explaination for this?
|
| A co-worker told me it is not valid HTML. He may be right, but we both
| agree; it's odd that IE would handle it when the form is loaded, but not
| when the style changes. It's as if the developers writting the parser
| accounted for it, but not the style developers.
|
| Interested in hearing your input.

I'll be interested in seeing a reply, but I'll just note that I've
experienced a somewhat "similar" problem when defining an empty hard-sized
div with "vertical-align:middle" on an overly large window. Once I write
innerHtml to it, it doesn't change size, but it repositions itself higher on
the page, as if the positioning code is different at load than during
processing. (IE6. This can easily be avoided by increasing margins or
shrinking the window until the div is "trapped" in place.) I suspect that
you're correct that the code in different operational segments may be
somewhat different.

Joe Earnest
 
P

Philip Ronan

I've
experienced a somewhat "similar" problem when defining an empty hard-sized
div with "vertical-align:middle" on an overly large window.

That's because "vertical-align" applies to table cell elements, not DIV
blocks. What did you expect?

Phil
 
J

Joe Earnest

Hi,


Philip Ronan said:
That's because "vertical-align" applies to table cell elements, not DIV
blocks. What did you expect?

For the example given, you're right of course. But the focus of the
original post (I think) was that the code interprets and acts on these
"improprieties" differently at different points in the process.

FWIW, I stated the example erroneously (slow starting this morning). My
latest situation with this involves a DIV inside a table cell (no issue with
positioning the DIV, itself, inside the cell). In fact, it's the entire
table that repositions itself in the excessively large body, but the
triggering event is the innerHtml write to the DIV only.

Joe Earnest
 
J

John MacIntyre

Joe Earnest said:
For the example given, you're right of course. But the focus of the
original post (I think) was that the code interprets and acts on these
"improprieties" differently at different points in the process.

That was my point.

Thanks for the feedback everyone. I'll know to avoid this in the future.

Regards,
John MacIntyre
VC++ / VB / ASP / Database Developer
http://www.johnmacintyre.ca
 

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

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,011
Latest member
AjaUqq1950

Latest Threads

Top