summaryrefslogtreecommitdiff
path: root/legacy/works/float-clearing-issue.html
diff options
context:
space:
mode:
Diffstat (limited to 'legacy/works/float-clearing-issue.html')
-rw-r--r--legacy/works/float-clearing-issue.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/legacy/works/float-clearing-issue.html b/legacy/works/float-clearing-issue.html
new file mode 100644
index 0000000..3abfbfc
--- /dev/null
+++ b/legacy/works/float-clearing-issue.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html>
+<head>
+<style type="text/css" media="screen">
+
+
+body{width:900px;margin:0 auto;}
+
+.clearLeft{clear:left;}
+
+.hpColContainer{float:left;width:298px;}
+
+#hpFeatureBox{float:right;width:600px;}
+
+
+</style>
+</head>
+<body>
+
+<div id="hpFeatureBox">
+ Right
+</div>
+
+<div class="clearLeft hpColContainer">
+ Left (clear left)
+</div>
+
+<div class="hpColContainer">
+ Left
+</div>
+