blob: 15981d5075eabe2bc8d1b9de7bce7c1d268eff26 [file]
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#container {
position: relative;
}
.abs {
outline: solid 1px skyblue;
position: absolute;
left: 0;
top: 0;
right: 0;
}
</style>
</head>
<body>
<p>When you click <button id="more">moooore</button>, the span.abs should expand with the container</p>
<p><span id="container"><span class="abs">&nbsp;</span>Words, words, words moooore</span>
</body>
</html>