diff options
author | Bohdan Ganicky <bohdan.ganicky@gmail.com> | 2009-01-30 18:25:09 +0000 |
---|---|---|
committer | Bohdan Ganicky <bohdan.ganicky@gmail.com> | 2009-01-30 18:25:09 +0000 |
commit | d5094f9a3b6e86e924eae475e9eae3799a1a0c35 (patch) | |
tree | 406c4b7a9df95dae96dabf71d691dec727a8e25f /demos/slider/side-scroll.html | |
parent | 2b7f14f2348242b481e6562988096d8b254680b9 (diff) | |
download | jquery-ui-d5094f9a3b6e86e924eae475e9eae3799a1a0c35.tar.gz jquery-ui-d5094f9a3b6e86e924eae475e9eae3799a1a0c35.zip |
demos/slider/side-scroll: fixed broken layout on index page on IE6, relates to #3851
Diffstat (limited to 'demos/slider/side-scroll.html')
-rw-r--r-- | demos/slider/side-scroll.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/demos/slider/side-scroll.html b/demos/slider/side-scroll.html index 4d37ef1aa..0900f0d65 100644 --- a/demos/slider/side-scroll.html +++ b/demos/slider/side-scroll.html @@ -9,8 +9,8 @@ <link type="text/css" href="../demos.css" rel="stylesheet" /> <style type="text/css"> #demo-frame > div.demo { padding: 10px !important; } - .scroll-pane { overflow: auto; width: 99%; } - .scroll-content { width: 2440px; } + .scroll-pane { overflow: auto; width: 99%; float:left; } + .scroll-content { width: 2440px; float: left; } .scroll-content-item { width: 100px; height: 100px; float: left; margin: 10px; font-size: 3em; line-height: 96px; text-align: center; } * html .scroll-content-item { display: inline; } /* IE6 float double margin bug */ .scroll-bar-wrap { clear: left; padding: 0 4px 0 2px; margin: 0 -1px -1px -1px; } @@ -91,8 +91,8 @@ <div class="demo"> -<div class="scroll-pane ui-widget ui-widget-header ui-corner-all ui-helper-clearfix"> - <div class="scroll-content" class="ui-helper-clearfix"> +<div class="scroll-pane ui-widget ui-widget-header ui-corner-all"> + <div class="scroll-content"> <div class="scroll-content-item ui-widget-header">1</div> <div class="scroll-content-item ui-widget-header">2</div> <div class="scroll-content-item ui-widget-header">3</div> |