gpt4 book ai didi

html - 我们可以在 html 文档的段落中使用标题吗?

转载 作者:行者123 更新时间:2023-11-28 04:56:14 25 4
gpt4 key购买 nike

我是 Html 的新手。我试图在类和 ID 的帮助下更改段落内 header 的某些属性。

          <div class="article">
<h1> I am here </h1>
<p>
where are u?
<h1> I am looking for u. </h1>
</p>
</div>

如果我使用 .article > h1选择器它同时选择了 <h1> .我开始知道我们不能选择单个 h1 。请帮助我。

最佳答案

您不能在 p 标签中嵌套 block 级 (h1) 元素。

您的选择器 .article > h1 将选择两个 h1 标签,因为您的浏览器正在将嵌套的 h1 移动到 p 之外 标记使您的代码语法正确

您的代码可能被您的浏览器更改为如下内容:

    <div class="article">
<h1> I am here </h1>
<p>where are u?</p>
<h1> I am looking for u. </h1>
</div>

关于html - 我们可以在 html 文档的段落中使用标题吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22784640/

25 4 0
文章推荐: c++ - 基于 Flex/Bison 的编译器——二进制生成
文章推荐: c++ - VS2013 C++ Compiler Mangling 名称定义为 extern "C"
文章推荐: html - 如何在
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com