Is it possible to make the absolutely positioned "thing" show up without editing the HTML, while keeping other overflowing content hidden? Here is the given HTML and CSS:
<div class="wrap">
<p>Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. Loads of words. </p>
<div class="thing">thing</div>
</div>
.wrap {
width: 100px;
height: 100px;
overflow:hidden;
position:relative;
}
.thing {
position:absolute;
top: -3px;
right: -10px;
}