自关闭脚本标签并没有真正关闭

发布于 2024-12-15 11:23:42 字数 417 浏览 1 评论 0原文

我正在 Google Chrome 上开发一个小型 html 页面,并用 XHTML 编写它。文档的开头看起来像这样:

<?xml version="1.0" encoding="utf8"?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"DTD/xhtml1-strict.dtd">

<html xml:lang="en">

  <head>

     <style href="tbx2html.css" type="text/css"/>

style 标签应该是自闭合的;但是,它不会关闭,页面的其余部分会放置在其中,因此不会显示任何内容。关于如何解决这个问题有什么建议吗?

I'm developing a small html page on Google Chrome, and I' writing it in XHTML. The beginning the of the document looks like this:

<?xml version="1.0" encoding="utf8"?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"DTD/xhtml1-strict.dtd">

<html xml:lang="en">

  <head>

     <style href="tbx2html.css" type="text/css"/>

The style tag should be self-closing; however, it doesn't close and the rest of the page is placed inside of it, so that nothing displays. Any suggestions on how to fix this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

铃予 2024-12-22 11:23:42

除非 Chrome 违反标准添加了此功能,否则这不是您引用样式表的方式。使用 link 标签:

<link href="tbx2html.css" type="text/css" rel="stylesheet" />

Unless Chrome has added this feature against the standard, that is not how you reference style sheets. Use the link tag:

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