CSS 和框架集?

发布于 2024-10-18 21:08:57 字数 403 浏览 4 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别理我 2024-10-25 21:08:57

简短的回答,请使用这个:

<frameset ...>
   <frame frameborder="xx"/>
</frameset>

[参见 http://www.codingforums。 com/archive/index.php/t-10259.html]

Short answer, use this instead:

<frameset ...>
   <frame frameborder="xx"/>
</frameset>

[see http://www.codingforums.com/archive/index.php/t-10259.html ]

我还不会笑 2024-10-25 21:08:57

如果您为框架集提供一个类,然后将该类放入样式表中会怎样?

What if you gave your frameset a class and then put the class in the stylesheet?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文