2023-12-29 02:10:32 -03:00
|
|
|
<style>
|
2024-02-15 17:12:50 -03:00
|
|
|
* {
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-29 02:10:32 -03:00
|
|
|
#container {
|
|
|
|
|
width: 300px;
|
|
|
|
|
height: 500px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
border: 2px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
background-color: lightblue;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box {
|
|
|
|
|
background-color: magenta;
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0px;
|
|
|
|
|
right: 50px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<div id="container">
|
|
|
|
|
<div class="content">
|
|
|
|
|
<div class="box"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|