CSS 和框架集?
我有一个 XHTML 1.0 Frameset doctype 的 .html 文档,并且使用以下代码:
<frameset rows="20%, 80%" border="1">
...
</frameset>
将上述 .html 代码放入 W3C 验证器时,出现以下错误:
框架集中没有属性“border”。
为了防止出现此错误,我可以做什么?我尝试使用以下命令创建一个 css 文件:
frameset {
border: 1px;
}
但似乎不起作用。
请不要评论/回答告诉我框架有多糟糕(我自己知道)。
I have an .html document of XHTML 1.0 Frameset doctype and I'm using the following code:
<frameset rows="20%, 80%" border="1">
...
</frameset>
When putting the above .html code in W3C Validator I get the following error:
there is no attribute "border" in frameset.
What can I do, in order to prevent this error? I tried creating a css file with:
frameset {
border: 1px;
}
but didn't seem to work.
Please don't comment/answer telling me how bad frames are (I know by myself).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简短的回答,请使用这个:
[参见 http://www.codingforums。 com/archive/index.php/t-10259.html]
Short answer, use this instead:
[see http://www.codingforums.com/archive/index.php/t-10259.html ]
如果您为框架集提供一个类,然后将该类放入样式表中会怎样?
What if you gave your frameset a class and then put the class in the stylesheet?