sku-pg
Version:
Skulpt is a Javascript implementation of Python 2.x. Python that runs in your browser!
36 lines (30 loc) • 572 B
HTML
<!--
Author: tkent@google.com (TAMURA Kent)
-->
<html>
<!--
Copyright 2009 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by an Apache 2.0 License.
See the COPYING file for details.
-->
<head>
<style>
.bar {
position: absolute;
text-align: center;
overflow: hidden;
}
#anchor {
background: blue;
}
#popup {
background: red;
}
</style>
</head>
<body>
<div id="anchor" class="bar">anchor</div>
<div id="popup" class="bar">popup</div>
</body>
</html>