gpt4 book ai didi

javascript - 文档开头不允许使用 XML

转载 作者:行者123 更新时间:2023-11-27 22:31:46 25 4
gpt4 key购买 nike

我在这段代码上遇到了这个错误:

<style>
#tt {
position:absolute;
display:block;
background:url(images/tt_left.gif) top left no-repeat;
}
#tttop {
display:block;
height:5px;
margin-left:5px;
background:url(images/tt_top.gif) top right no-repeat;
overflow:hidden;
}
#ttcont {
display:block;
padding:2px 12px 3px 7px;
margin-left:5px;
background:#666;
color:#fff;
}
#ttbot {
display:block;
height:5px;
margin-left:5px;
background:url(images/tt_bottom.gif) top right no-repeat;
overflow:hidden;
}
</style>

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

有谁知道我为什么会收到这个错误?我应该在哪里粘贴样式?

最佳答案

XML 声明……

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

...,如果包含,则必须是文档中的第一件事。您让它出现在样式元素之后

也就是说,1.0 版是默认的,UTF-8 是默认的,no 是默认的。所以你可以完全忽略它。

此外,假设您正在编写 XHTML 并将其作为 text/html 提供,您应该根据 the first of the compatibility guidelines 将其完全省略。 .

where should i be pasting the style?

样式元素只能作为 head 元素的 child 元素出现在 XHTML 1.0 文档中。

关于javascript - 文档开头不允许使用 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3559913/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com