Posted by Steve Pugh on 05/19/06 15:04
Hans wrote:
> <frameset rows="60%, *" frameborder="no" framespacing="0" border="0" >
> <frameset cols="60%, *" frameborder="no" framespacing="0"
> border="0" >
>
> <frame>
> <table width="80%" align="left" valign="top"
> border="0" cellspacing="3" cellpadding="0">
What's this doing here? A quick look at the spec:
http://www.w3.org/TR/html401/present/frames.html#edef-FRAME will show
you that frame is defined as an EMPTY element. It can not have any
content. You should instead link to another HTML file via the SRC
attribute.
Please, put your HTML online somewhere so we can see it.
> The intention is to have 3 areas:
> 1. a square area 3x3 that holds 9 little images (w_a - w_i)
> 2. to the right of that square area a "right arrow" (w_pfr)
> 3. below the square area a "down arrow" (w_pfu")
Are these squares supposed to be frames? Or table cells? You've got an
unholy mixture of the two shoved together in a way that isn't allowed
in HTML.
Steve
[Back to original message]
|