开发者

  displays a tiny line

开发者 https://www.devze.com 2022-12-27 08:52 出处:网络
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 r

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 breakin开发者_开发百科g space.

How do you reset the   to display nothing?


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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消