溢出x和绝对位置

时间:2019-01-08 11:00:19

标签: html css overflow

我有一个辅助div,它在悬停时显示一些文本,但是此div创建垂直滚动而不是溢出容器 http://jsfiddle.net/a9deqs2b/

.container {
  overflow-x: auto;
  width: 100%;
}

.row {
  position: relative;
  width: 100%;
  height: 30px;
  padding: 5px;
  cursor: pointer;
  &:not(:last-of-type) {
    border-bottom: 1px solid black;
  }
  &:hover .helper {
    display: block;
  }
}

.helper {
  display: none;
  position: absolute;
  top: 30px;
  left: 40px;
  width: 100px;
  height: 50px;
  border-radius: 5px;
  background: #e3e;
}
<div class="container">
  <div class="row">
    fbgfgh
    <div class="helper">asd</div>
  </div>
  <div class="row">
    gfdhgfdh
    <div class="helper">asd</div>
  </div>
</div>

现在,它在y轴上创建了一个不应该存在的溢出。如果没有overflow-x,它将正常工作。我需要这个overflow-x


标记为重复的问题不能解决我的问题。

0 个答案:

没有答案