gpt4 book ai didi

html - 在此上下文中,元素样式不允许作为元素主体的子元素。 (抑制来自该子树的更多错误。)

转载 作者:行者123 更新时间:2023-11-28 15:48:41 25 4
gpt4 key购买 nike

    <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>assignment 4</title>
<h1>Assignment4- CSS basics</h1>

<style>
.special
{
text-align:justify;
text-indent:10px;
}

提示元素样式不对,求助

最佳答案

h1 不属于 head 部分。相反,它应该在 body 中。

它应该看起来像:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>assignment 4</title>
<style>
.special {
text-align:justify;
text-indent:10px;
}
</style>
</head>
<body>
<h1>Assignment4- CSS basics</h1>
</body>
</html>

关于html - 在此上下文中,元素样式不允许作为元素主体的子元素。 (抑制来自该子树的更多错误。),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19364405/

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