自关闭脚本标签并没有真正关闭
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非 Chrome 违反标准添加了此功能,否则这不是您引用样式表的方式。使用
link
标签:Unless Chrome has added this feature against the standard, that is not how you reference style sheets. Use the
link
tag: