在Chrome中,在结果窗格中单击并单击选项卡,以将焦点放在此处的第一个链接上:

http://jsfiddle.net/2q6c7c36/2/

请注意.box的内容如何在其边界外“跳起来”?它似乎是由我使用的clearfix类引起的。这是Chrome中的错误还是我做错了?在将伪元素用于图标字体时,我也注意到了这一点。

谢谢。

.clearfix:after{
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

最佳答案

演示-http://jsfiddle.net/victor_007/2q6c7c36/3/

content:"."设置为content:""



.box {
  border: 2px solid black;
  border-radius: 10px;
  position: absolute;
  float: left;
  width: 318px;
  overflow: hidden;
}
.clearfix:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
a {
  display: inline-block;
  background-color: #555;
  color: white;
  text-decoration: none;
  font-family: helvetica;
  padding: 3px;
}

<div class="box clearfix">
  <a href="#" class="button">Button</a>
  <a href="#" class="button">Button</a>
  <a href="#" class="button">Button</a>
</div>

关于html - 链接之间的选项卡导致Chrome中的伪元素出现问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26415250/

10-09 13:59