gpt4 book ai didi

HTML : Text after empty bold tag also displayed in bold formatting

转载 作者:行者123 更新时间:2023-11-28 02:12:34 33 4
gpt4 key购买 nike

我想了解为什么浏览器会这样。

我在 html 文档中有以下文本。

<html>
<body>
This is Sample Text. <B/>Text after empty bold tag.
</body>
</html>

如果我在浏览器中查看此文档,则显示如下。

这是示例文本。 空粗体标记后的文本。

为什么会这样?毕竟,我没有将任何文本标记为粗体。

最佳答案

您需要为此编写有效的 html 代码才能正确处理开始和结束标记。因此,您需要在所需的粗体文本前写一个开始标记 ( <B>),在文本后写一个结束标记 ()。

<html>
<body>
<B>This is Sample Text.</B>Text after empty bold tag.
</body>
</html>

请注意,在您的示例中,您使用的是 <B/>这既不是有效的开始标签也不是结束标签,但在某些浏览器中可能被解释为开始标签。

关于HTML : Text after empty bold tag also displayed in bold formatting,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7445204/

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