为什么伪元素周围有额外的空间?

时间:2016-02-01 20:26:19

标签: css twitter-bootstrap css-animations pseudo-element

我在我的按钮上使用伪元素:: after和:: before之前的动画。我在3个不同的平台上重现了这个问题。很难看到,但角落有额外的空间。放大使其更容易看到。

我使用的是Bootstrap,但我已经使用和不使用Bootstrap重现了这一点。

http://codepen.io/sinrise/pen/vLaGzN

<a href="#" class="btn btn-default btn-action">Test Button</button>

正常 Button-normal state

哈弗 Button-hover state

2 个答案:

答案 0 :(得分:2)

<强>更新

进行了一些测试和研究,发现了真正的问题......从z-index: 1;规则

中移除了a.btn-action
a.btn-action {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    color: black;
    transition: color 0.4s;
    transition-delay: 0.3s;
}

Updated codepen

答案 1 :(得分:1)

删除hover伪类的transform3d转换,并为:: before和:: after伪选择器添加height: 100%;,以定位您想要使用的悬停动画。

a.btn-action {
    position: relative;
    box-sizing: border-box;
    color: black;
    transition: color 0.4s;
    transition-delay: 0.3s;
}
a.btn-action::before, a.btn-action::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
   transition: all 0.2s ease 0s;
   z-index: -1;
   box-sizing: border-box;
}

a.btn-action:hover::before, 
a.btn-action:hover::after {
    height:100%;
}

修改演示:Codepen