Html 无法删除blockquote标记后文本的粗体字体

Html 无法删除blockquote标记后文本的粗体字体,html,Html,请注意,在我的代码中删除blockquote标记后文本的粗体字体时遇到问题。这是我的代码片段: <blockquote cite="https://books.google.com/?id=sUWP_SM7IrEC&pg=PA98"> <p>I say to you today, my friends, so even though we face the difficulties of today and tomorrow, I still have a dr

请注意,在我的代码中删除blockquote标记后文本的粗体字体时遇到问题。这是我的代码片段:

<blockquote cite="https://books.google.com/?id=sUWP_SM7IrEC&pg=PA98">

<p>I say to you today, my friends, so even though we face the difficulties of today and tomorrow, I still have a dream. It is a dream deeply rooted in the American dream.
I have a dream that one day this nation will rise up and live out the true meaning of its creed: 'We hold these truths to be self-evident</p>

</blockquote>
      <br />
      <p>The speech became known as greatest oratorical speech in the history of America and facilitated the passage of the Civil Right Act of 1964.
    </p>

朋友们,今天我要对你们说,即使我们面对今天和明天的困难,我仍然有一个梦想。这是一个深深植根于美国梦的梦想。
我有一个梦想,有一天,这个国家将站起来,实现其信条的真正含义:“我们认为这些真理是不言而喻的


该演讲被称为美国历史上最伟大的演讲,并促进了1964年《民权法案》的通过。

p
标签后打开您的
标签,如下所示:

<p>
    <blockquote cite="https://books.google.com/?id=sUWP_SM7IrEC&pg=PA98">I say to you today, my friends, so even though we face the difficulties of today and tomorrow, I still have a dream. It is a dream deeply rooted in the American dream.
I have a dream that one day this nation will rise up and live out the true meaning of its creed: 'We hold these truths to be self-evident
    </blockquote>
</p>
      <br />
<p>The speech became known as greatest oratorical speech in the history of America and facilitated the passage of the Civil Right Act of 1964.</p>

朋友们,今天我要对你们说,即使我们面对今天和明天的困难,我仍然有一个梦想。这是一个深深植根于美国梦的梦想。
我有一个梦想,有一天,这个国家将站起来,实现其信条的真正含义:“我们认为这些真理是不言而喻的


该演讲被称为美国历史上最伟大的演讲,并促进了1964年《民权法案》的通过


你应该确保你所有的标签都是按正确的层次顺序关闭的。例如:

<p> <---- opening tag

    <b> <---- another opening tag

        **** some text here ****

    </b> <---- closing tag
</p> <---- another closing tag
p
标签后打开您的
标签,如下所示:

<p>
    <blockquote cite="https://books.google.com/?id=sUWP_SM7IrEC&pg=PA98">I say to you today, my friends, so even though we face the difficulties of today and tomorrow, I still have a dream. It is a dream deeply rooted in the American dream.
I have a dream that one day this nation will rise up and live out the true meaning of its creed: 'We hold these truths to be self-evident
    </blockquote>
</p>
      <br />
<p>The speech became known as greatest oratorical speech in the history of America and facilitated the passage of the Civil Right Act of 1964.</p>

朋友们,今天我要对你们说,即使我们面对今天和明天的困难,我仍然有一个梦想。这是一个深深植根于美国梦的梦想。
我有一个梦想,有一天,这个国家将站起来,实现其信条的真正含义:“我们认为这些真理是不言而喻的


该演讲被称为美国历史上最伟大的演讲,并促进了1964年《民权法案》的通过


你应该确保你所有的标签都是按正确的层次顺序关闭的。例如:

<p> <---- opening tag

    <b> <---- another opening tag

        **** some text here ****

    </b> <---- closing tag
</p> <---- another closing tag

确实不确定您的特定样式,但您可以始终通过将嵌套选择器应用于CSS来隔离
文本,以指示特定性:

p {
  font-weight: normal;
}

blockquote p {
  font-weight: bold;
}

不确定您的特定样式,但您可以通过将嵌套选择器应用于CSS来隔离
文本,以指示特定性:

p {
  font-weight: normal;
}

blockquote p {
  font-weight: bold;
}

感谢您花时间帮助我尝试了您编写的内容,它仍然不起作用,但我将此样式应用于p标记,它起作用了:p{font-weight:normal;}感谢您花时间帮助我尝试了您编写的内容,它仍然不起作用,但我将此样式应用于p标记,它起作用了:p{font-weight:normal;}谢谢。如果此方法有效,请将其标记为所选答案并向上单击。这有助于搜索过滤器。谢谢很高兴你成功了。:)如果此方法有效,请将其标记为所选答案,然后向上单击。这有助于搜索过滤器。谢谢很高兴你成功了。:)