Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2584)

Unified Diff: samples/o3d-webgl-samples/pool.html

Issue 1706020: Incorporated gman's CSS changes for resizing and placing the... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3d-webgl-samples/pool.html
===================================================================
--- samples/o3d-webgl-samples/pool.html (revision 46015)
+++ samples/o3d-webgl-samples/pool.html (working copy)
@@ -39,6 +39,29 @@
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
+<style>
+ html, body {
+ border: 0;
+ margin: 0;
+ height: 100%;
+ height: 100%;
+ }
+ div#container {
+ position:relative; /* needed for footer positioning*/
+ margin:0 auto; /* center, not in IE5 */
+
+ height:auto !important; /* real browsers */
+ height:100%; /* IE6: treaded as min-height*/
+
+ min-height:100%; /* real browsers */
+ }
+ div#footer {
+ position:absolute;
+ width:100%;
+ bottom:0; /* stick to bottom */
+ background: #111111;
+ }
+</style>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>
Pool
@@ -1950,12 +1973,13 @@
</script>
</head>
<body onload="initClient()" style="background-color: #111111">
-<br/>
-<center>
+<div id="container">
<!-- Start of O3D client area -->
-<div id="o3d" width="100%" height="100%"> </div>
+<div id="o3d" style="width: 100%; height:100%;"> </div>
<!-- End of O3D plugin -->
+<div id="footer">
+<center>
<table width = 800 style="color: gray">
<tr>
<td> Click and drag to move the view. </td>
@@ -1971,10 +1995,9 @@
</tr>
</table>
</center>
+</div>
+</div>
-<table>
-<tr><td>
-
<div style="display:none">
<!-- Start of effect -->
<textarea id="vshader">
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698