mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-14 15:37:55 +00:00
25 lines
454 B
HTML
25 lines
454 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<style type="text/css">
|
|
div {
|
|
padding: 2%;
|
|
position: absolute;
|
|
top: 0; bottom: 0;
|
|
left: 0; right: 0;
|
|
text-align: center;
|
|
border: 4px solid red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<object id="test" type="application/x-test" width="159" height="91"></object>
|
|
</div>
|
|
<div id="overlay">
|
|
<h1>overlay</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|