显示一条细线

发布于 2024-08-29 08:12:04 字数 166 浏览 4 评论 0原文

当我在我的网站中创建   时,它会显示一条细线,它可以隐藏在某些元素上,因为我通常在 CSS 按钮上使用它们,但我有一个 if 语句,上面写着如果这显示结果,如果不显示不间断空格。

如何重置   以不显示任何内容?

when I make   in my site, it displays a tiny line, which can be hidden on some elements because I'm usually using them on CSS buttons, but I have an if statement that says if this show the result if not show a non breaking space.

How do you reset the   to display nothing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

許願樹丅啲祈禱 2024-09-05 08:12:04

这条细线是轮廓吗?在 css 中试试这个:

outline:none;

这条细线是下划线吗?在 css 中试试这个:

text-decoration:none;

那是别的什么,详细说明你的问题。

Is this tiny line an outline? Try this in css:

outline:none;

Is this tiny line an underline? Try this in css:

text-decoration:none;

Is that something else, elaborate your question.

蒲公英的约定 2024-09-05 08:12:04

“细线”很可能是下划线/边框。删除text-decoration和/或边框。

如果您不希望它们做任何事情,为什么还要使用   呢?除非您确实需要它们,否则无需将源代码弄乱。

The "tiny line" is most likely an underline/border. Remove text-decoration and/or borders.

Why are you using  s if you don't want them to do anything, though? No need to clutter the source with them unless you really need them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文