I am building a website for the first time. In attempting to validate
my frameset html file I came across the following URL
The 3 errors I am getting are all regarding the following:
<frameset rows="100,*" frameborder="0" border="0" framespacing="0 ">
The errors are:
Line 16, column 35: there is no attribute "FRAMEBORDE R"
Line 16, column 46: there is no attribute "BORDER"
Line 16, column 63: there is no attribute "FRAMESPACI NG"
In reading up on the above url I found no such attribute as "border" or
"framespaci ng". I did find "frameborde r", "marginwidt h", and
"marginheig ht". The information also contains examples in which these
attributes are all inside the <frame> element as opposed to the
<frameset> element.
I attempted to correct my page's errors by moving frameborder="0" into
the <frame> elements of my document, removing "border" and
"framespaci ng" attributes, and adding marginwidth="0" and
marginheight="0 ".
The result was white space around all of my frames in both Netscape 7.0
and IE 6. I ended up reverting back to the original which is:
<frameset rows="100,*" frameborder="0" border="0" framespacing="0 ">
<frameset cols="170,*" frameborder="0" border="0" framespacing="0 ">
<frame src="sg_tl.html " name="A" scrolling="no" noresize="nores ize">
<frame src="sg_top.htm l" name="B" scrolling="no" noresize="nores ize">
</frameset>
<frameset cols="164,*" frameborder="0" border="0" framespacing="0 ">
<frame src="sg_menu.ht ml" name="C" scrolling="auto " noresize="nores ize">
<frame src="main.html" name="D" scrolling="auto " noresize="nores ize">
</frameset>
</frameset>
The site looks as it I intended it to in both NS and IE, but it just
won't validate.
Does anyone have any suggestions?
My website is
Thank you,
Jonathan
my frameset html file I came across the following URL
The 3 errors I am getting are all regarding the following:
<frameset rows="100,*" frameborder="0" border="0" framespacing="0 ">
The errors are:
Line 16, column 35: there is no attribute "FRAMEBORDE R"
Line 16, column 46: there is no attribute "BORDER"
Line 16, column 63: there is no attribute "FRAMESPACI NG"
In reading up on the above url I found no such attribute as "border" or
"framespaci ng". I did find "frameborde r", "marginwidt h", and
"marginheig ht". The information also contains examples in which these
attributes are all inside the <frame> element as opposed to the
<frameset> element.
I attempted to correct my page's errors by moving frameborder="0" into
the <frame> elements of my document, removing "border" and
"framespaci ng" attributes, and adding marginwidth="0" and
marginheight="0 ".
The result was white space around all of my frames in both Netscape 7.0
and IE 6. I ended up reverting back to the original which is:
<frameset rows="100,*" frameborder="0" border="0" framespacing="0 ">
<frameset cols="170,*" frameborder="0" border="0" framespacing="0 ">
<frame src="sg_tl.html " name="A" scrolling="no" noresize="nores ize">
<frame src="sg_top.htm l" name="B" scrolling="no" noresize="nores ize">
</frameset>
<frameset cols="164,*" frameborder="0" border="0" framespacing="0 ">
<frame src="sg_menu.ht ml" name="C" scrolling="auto " noresize="nores ize">
<frame src="main.html" name="D" scrolling="auto " noresize="nores ize">
</frameset>
</frameset>
The site looks as it I intended it to in both NS and IE, but it just
won't validate.
Does anyone have any suggestions?
My website is
Thank you,
Jonathan
Comment