显示一条细线
当我在我的网站中创建
时,它会显示一条细线,它可以隐藏在某些元素上,因为我通常在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这条细线是轮廓吗?在 css 中试试这个:
这条细线是下划线吗?在 css 中试试这个:
那是别的什么,详细说明你的问题。
Is this tiny line an outline? Try this in css:
Is this tiny line an underline? Try this in css:
Is that something else, elaborate your question.
“细线”很可能是下划线/边框。删除
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.