mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e1690fa43c
--HG-- extra : rebase_source : 9b018973a13a50f7616cac2a369bc3a61ccd5927
27 lines
480 B
HTML
27 lines
480 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>wide reference, 768x128 lime, 768x128 aqua</title>
|
|
<style type="text/css">
|
|
div
|
|
{
|
|
width: 768px; height: 256px;
|
|
}
|
|
#outer
|
|
{
|
|
border: 1px solid black;
|
|
}
|
|
#inner
|
|
{
|
|
width: 768px; height: 256px;
|
|
}
|
|
#inner > div { width: 768px; height: 128px; }
|
|
#top { background-color: lime; }
|
|
#bottom { background-color: aqua; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="outer"><div id="inner"><div id="top"></div><div id="bottom"></div></div></div>
|
|
</body>
|
|
</html>
|