gpt4 book ai didi

html - 为什么背景有时显示有时不显示?

转载 作者:行者123 更新时间:2023-12-04 08:52:15 25 4
gpt4 key购买 nike

我有在某些单词下划线的 CSS。
后来我发现它没有出现在空间中。
我发现在示例HTML上,下划线显示在上example之间,但不在较低的 example 之间.
为什么下面的空格没有下划线?

<html>
<head>
<meta charset="utf-8" />
<style>
.correct-line {
background: linear-gradient(transparent 55%, rgb(10, 150, 126) 60%);
}
</style>
</head>
<body>
<p>example<span class="correct-line"> </span>example</p>
<hr />
<div>
example
<span class="correct-line"> </span>example
</div>
</body>
</html>

最佳答案

这是因为 CSS 将多个空格处理为单个空格和换行符后的空格都被视为空格,因此减少为单个空格并删除第二个空格。将您的代码与下面进行对比。

<html>
<head>
<meta charset="utf-8" />
<style>
.correct-line {
background: linear-gradient(transparent 55%, rgb(10, 150, 126) 60%);
}
</style>
</head>
<body>
<p>example<span class="correct-line"> </span>example</p>
<hr />
<div>
example<span class="correct-line"> </span>
example
</div>
</body>
</html>

也结帐 https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model/Whitespace了解更多信息。
您可以使用 &nbsp;如果这只是您插入的数据,但可能来自不同的来源
您可能最好使用 white-space:pre;如下

<html>
<head>
<meta charset="utf-8" />
<style>
.correct-line {
background: linear-gradient(transparent 55%, rgb(10, 150, 126) 60%);
white-space: pre;
}
</style>
</head>
<body>
<p>example<span class="correct-line"> </span>example</p>
<hr />
<div>
example
<span class="correct-line"> </span>example
</div>
<div>
example<span class="correct-line">
</span>example
</div>
</body>
</html>

关于html - 为什么背景有时显示有时不显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64041795/

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