使div超出实际div

时间:2018-11-06 08:18:43

标签: html css reactjs

我有以下示例,我希望goOutside div(黄色的)将从相对div溢出。但要保持滚动在相对div内(按div的内容)。

.relative {
  position: relative;
  height: 100px;
  overflow-y: auto;
  background: green;
  width: 100%;
}  

.content {
  background: blue;
  width: 200px;
}
  
.goOutside {
  background: yellow;
  position: absolute;
  right: 0;
  height: 300px;
  width: 200px;
}
<div class="relative">
  <div class="goOutside">
    
  </div>
  <div class="content">
    test<br />test<br />test<br />test<br />test<br />
    test<br />test<br />test<br />test<br />test<br />
    test<br />test<br />test<br />test<br />test<br />
  </div>
</div>

0 个答案:

没有答案