滚动 div#container
时,如果 div.item
在视野内,如果保证 String-String
一直在视野内?
https://codepen.io/homor/pen/BaLPoQb
代码如下:
<div id="container">
<div class="stage">
<div class="item">
String-String
</div>
</div>
</div>
<style>
#container{
width: 300px;
height: 80px;
overflow: scroll;
}
.stage{
width: 1000px;
position: relative;
}
.item{
position: absolute;
left: 100px;
right: 200px;
width: 400px;
text-align: center;
background-color: yellow;
}
</style>
有没有优雅的办法可以实现?