frameset with no border

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Manu

    frameset with no border

    Hello, i don't arrive to find a alternative for no border between 2 frame !
    with IE no problem i use : framespacing="0 "
    but for W3C how do ?

    Here my sample code :

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
    "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <title>test</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>

    <frameset cols="80,*,50" framespacing="0 ">
    <frame src="file1.htm" name="leftFrame " scrolling="NO" noresize
    frameborder="0" marginwidth="0" marginheight="0 " >
    <frame src="file2.htm" name="mainFrame " frameborder="0" marginwidth="0"
    marginheight="0 " >
    <frame src="file3.htm" name="mainFrame " frameborder="0" marginwidth="0"
    marginheight="0 " >
    <noframes><body >

    </body></noframes>
    </frameset>
    </html>


  • Steve Pugh

    #2
    Re: frameset with no border

    "Manu" <manu@cyklades. com> wrote:
    [color=blue]
    >Hello, i don't arrive to find a alternative for no border between 2 frame !
    >with IE no problem i use : framespacing="0 "
    >but for W3C how do ?[/color]

    Add farmeborder="0" to each frame tag. No common browser currently
    supports this properly though.

    So you have three choices -
    1. Valid frames with borders
    2. Invalid frames with no borders.
    3. No frames.

    I'd recommend 3.

    Steve

    --
    "My theories appal you, my heresies outrage you,
    I never answer letters and you don't like my tie." - The Doctor

    Steve Pugh <steve@pugh.net > <http://steve.pugh.net/>

    Comment

    Working...