Currently, I have an .html document with XHTML 1.0 Frameset doctype and the following code:
<frameset rows="20%, 80%" border="1">
...
</frameset>
Upon validating this code on W3C Validator, it gives me the error message:
there is no attribute "border" in frameset.
To resolve this issue, I attempted to create a CSS file with the following content:
frameset {
border: 1px;
}
Unfortunately, this solution did not work as expected.
Please refrain from commenting or answering about the use of frames (I am aware of their limitations). Thank you!