From 0ef7658e8d20e5fcf5c8789e366c327779a841a6 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 2 Oct 2005 15:37:02 +0000 Subject: [PATCH] r459: Changing to use a better system with position: relative --- docs/example.css | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/docs/example.css b/docs/example.css index 4e4b08e..ac57a48 100644 --- a/docs/example.css +++ b/docs/example.css @@ -31,27 +31,34 @@ label margin-top: 10px; border: 1px solid #8FAEBE; background-color: #EAF2FF; + position: relative; } #leftcol { - float: left; - width: 33%; + /*float: left;*/ + margin-right: 66%; + /*width: 33%;*/ padding: 10px 10px 10px 20px; border: 1px solid red; } #midcol { - float: left; + /*float: left;*/ + position: absolute; width: 33%; + right: 33%; + top: 0px; padding: 10px; border: 1px solid blue; } #rightcol { - margin-left: 65%; + position: absolute; + right: 0px; + /*margin-left: 65%;*/ width: 33%; padding: 10px; border: 1px solid green; -- 2.43.5