Hello,
I am in the process of trying to make some existing web pages comply with
W3C's HTML 4.01 Recommendation ('strict' where possible, 'loose' where
not -- i.e. when using framesets and, hence, the 'target' attribute of the
<a> tag...)
I have so far been unsuccessful in finding a compliant equivalent of the
'border' attribute of the <frameset> tag.
<frameset border="0"....>
<frame frameborder="0" ...>
produces frames without borders, but W3C's validator says that there is no
attribute 'border'.
Attempting to use CSS instead, the following seem to have no effect:
frameset
{
border-width: 0px; -AND/OR-
border-style: none; -AND/OR-
border-style: hidden; -AND/OR-
border-collapse: collapse; -whatever THAT means-
}
but all leave me with a narrow two- or three-pixel (ish) border that can
only be described as tenacious.
Does anyone know how to achieve the equivalent of <frameset border="0"...>
using CSS to produce something W3C compliant?
If it makes any difference, I'm viewing my attempts using IE6.
Thank you.
A.
I am in the process of trying to make some existing web pages comply with
W3C's HTML 4.01 Recommendation ('strict' where possible, 'loose' where
not -- i.e. when using framesets and, hence, the 'target' attribute of the
<a> tag...)
I have so far been unsuccessful in finding a compliant equivalent of the
'border' attribute of the <frameset> tag.
<frameset border="0"....>
<frame frameborder="0" ...>
produces frames without borders, but W3C's validator says that there is no
attribute 'border'.
Attempting to use CSS instead, the following seem to have no effect:
frameset
{
border-width: 0px; -AND/OR-
border-style: none; -AND/OR-
border-style: hidden; -AND/OR-
border-collapse: collapse; -whatever THAT means-
}
but all leave me with a narrow two- or three-pixel (ish) border that can
only be described as tenacious.
Does anyone know how to achieve the equivalent of <frameset border="0"...>
using CSS to produce something W3C compliant?
If it makes any difference, I'm viewing my attempts using IE6.
Thank you.
A.
Comment