以半流体布局显示内联左列和主列

时间:2012-06-15 18:02:50

标签: css magento fluid-layout

我正在修改magento中的现代主题,使其流畅到1280像素的宽度。

一切似乎都在工作,但是当左列是固定宽度并且主列扩展以填充其余部分时,我无法将左列和主列(在2列左侧布局中)显示为内联空间。我实现这一点的唯一方法是绝对定位左列,这不允许包装器随左列内容扩展。

希望这有点意义。无论如何,这是我正在使用的临时绝对定位修复的HTML和CSS。我尝试过使用浮点数和内联块以及我通过谷歌找到的其他一些方法,但似乎都没有。问题div是col-left和col-main。

非常感谢任何帮助。

HTML:

    <div class="page">

        <div class="main-container col2-left-layout">

            <div class="main">
                <?php echo $this->getChildHtml('breadcrumbs') ?>
                <div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
                <div class="col-main">
                    <?php echo $this->getChildHtml('global_messages') ?>
                    <?php echo $this->getChildHtml('content') ?>
                </div>
        <div style="clear:both"></div>

            </div>

        </div>

        <?php echo $this->getChildHtml('footer') ?>
        <?php echo $this->getChildHtml('before_body_end') ?>

    </div>

CSS

.page { width:80%; margin:15px auto 0; text-align:left; min-width:960px; max-width: 1280px;position:relative;}
.main-container {position:relative;float:left;clear:both;}
.main { background:#fff; border:1px solid #bbb;position:relative;float:left; padding-top:10px;width:100%;}

/* Base Columns */
.col-left { width:220px;float:left;position:absolute; left:10px;top:10px;z-index:1000;}
.col-main {  padding:0px 10px 10px 220px; float:left; margin-left:20px; }
.col-right { float:right; width:220px; padding:0 0 1px; }

1 个答案:

答案 0 :(得分:0)

我似乎记得很久以前做过这样的事情,解决方案非常复杂。使用负边距等幸运的是,我认为我发现和smashingmag文章解释了如何做 - 你可能需要改变它,因为示例将主体设置为80%但我认为theidea应该在全宽网站上工作。希望这会有所帮助:

http://coding.smashingmagazine.com/2010/11/08/equal-height-columns-using-borders-and-negative-margins-with-css/