使用pseudos悬停时奇怪的下划线

时间:2015-08-18 02:24:29

标签: css

您可以看到悬停时,下划线会短暂闪烁。我不知道如何摆脱它。

.toggle2:hover:before {
content:"➝ \00a0 Close profile";
color: #2d2d2d;
text-decoration: none;
}

http://jsfiddle.net/1udwnosL/

3 个答案:

答案 0 :(得分:2)

更改

border-bottom: solid 1px transparent;

border-bottom: solid 0px transparent;

答案 1 :(得分:1)

因为你的css的一行

  .toggle2:hover {
        border-bottom: solid 1px transparent; /*--Remove it and see if it ok for you--*/
        transition: all .3s ease-out;
        text-decoration: none;
    }

答案 2 :(得分:0)

为.toggle2添加边框。 CSS也试图为这个属性设置动画。



.toggle2 {
    text-decoration: none;
    width: auto;
    border-bottom: solid 1px transparent;
    transition: all .3s ease-out;
}




请参阅下面的固定文件 http://jsfiddle.net/drk5rxpe/