<!DOCTYPE html>
<body>
<div class="wrapper">
<button> button
<div class="container"></div>
</button>
</div>
</body>
<style>
.wrapper {
overflow: hidden;
}
button {
color: red;
position: relative;
height: 100px;
}
.container {
position: fixed;
width: 10px;
height: 100px;
background: green;
}
</style>
</html>