Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
My guess would be that
Quote:
|
there is no attribute "height"
|
means that there is no height="something" that should be applied on an element
;-)
The fact is, that a table element has no height attribute, although the browser interprets it if it's found. That's because too many lazy developers have used this to drop 100% of its support.
The correct way as of today, would be to set the height via CSS, either online via the style attribute, or from an css file, referencing the element tag name or id
Code:
<!-- Dynamic Banner provided by RevenuePILOT.com -->
<table border='0' align='center' cellspacing='0' width='468' style="height:60px">
or in html:
Code:
<!-- Dynamic Banner provided by RevenuePILOT.com -->
<table id="revPilTbl" align='center' cellspacing='0'>
and in the css file:
Code:
#revPilTbl{
height: 60px;
width: 468px;
border: 0px;
}
__________________
Only a biker knows why a dog sticks his head out the window.
|