mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|