的下划线-CSS-Removeunderlineof" /> 的下划线-CSS-Removeunderlineof" /> 的下划线-CSS-Removeunderlineof" />
当前位置:  开发笔记 > 编程语言 > 正文

CSS-删除的下划线-CSS-Removeunderlineof

Heyguysihavesomethinglikethis:嘿家伙我有这样的事情:<ahref#><span><h

Hey guys i have something like this:

嘿家伙我有这样的事情:

V posledných dnech se událo mnoho změn, které byli velice výrazné. Proto neváhajte a podívete se i vy na to, co se vlastne zmenilo a nebo nezměnilo kdo vi...

I just move out before span to make full block as href not just text and text become underline.

我只是在span之前移出来制作完整的块,因为href不仅仅是文本和文本变成下划线。

I try to fix it with something like:

我尝试用以下方法修复它:

h4 {
    padding: 5px 10px 10px 10px;         /*text v slidery, opacity */
    font-color:FFFFFF;
}

a h4 {
    padding: 5px 10px 10px 10px;         /*text v slidery, opacity */
    font-color:FFFFFF;
    text-decoration: none;
}

a:visited h4{
    text-decoration:none;          
}
a:active h4{
    text-decoration:none;          
}
a:link h4{
    text-decoration:none;          
}

But it didnt really help, and advise?

但它没有真正的帮助,并建议?

Thanks for reading my post :)

感谢阅读我的帖子:)

4 个解决方案

#1


5  

The underline is on the anchor, not the heading.

下划线是锚点,而不是标题。

Remove it from the anchor.

将其从锚中移除。

a {
    text-decoration: none;
}

#2


3  

It would make much more sense to clear this up and give the a a clear class which indicates it's semantical meaning inside the HTML:

清除它并给出一个清晰的类来表明它在HTML中的语义含义会更有意义:


Then add style:

然后添加样式:

a.whatever-fits {
    text-decoration: none;
}

Additional remarks:

Your nesting of a , h4 and span are invalid HTML.

嵌套a,h4和span是无效的HTML。

font-color:FFFFFF; has 2 mistakes:

字体颜色:FFFFFF;有2个错误:

  1. there is no attribute called font-color, to style the color of text, you simply use color

    没有名为font-color的属性,为了设置文本的颜色,你只需使用颜色

  2. hex colors need a leading #, e.g. #FFFFFF

    十六进制颜色需要一个前导#,例如#FFFFFF

#3


1  

    h4 {
        padding: 5px 10px 10px 10px;         /*text v slidery, opacity */
        color:#fff; }

    a h4 {
        padding: 5px 10px 10px 10px;         /*text v slidery, opacity */
        color:#fff;
        text-decoration: none; }

    a:visited h4{
        text-decoration:none;           } 
a:active h4{
        text-decoration:none;           }
 a:link h4{
        text-decoration:none;           }

#4


0  

You need to use

你需要使用

a {
    text-decoration: none;
}

推荐阅读
author-avatar
00zhhl_513
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有