我怎样才能让div浮动到主容器外面

时间:2012-12-18 17:29:13

标签: css

我正在使用模板在WP上工作,我试图让一个按钮浮动到主容器之外。我在这里查看了一些已经发布的问题,但没有运气。

我尝试过填充,边距,溢出等。似乎有效的一件事是设置负边距,但在这种情况下,div被主容器隐藏。

这是HTML:

<div class="purchase_options_meta clearfix">
                    <div class="purchase_options">
                       <div id="deal_attributes_wrap" class="section ">                                
                        </div>
                           <div class="buy_button gb_ff font_x_large">                                
                        </div>

                    </div>
 </div>

这是我正在使用的CSS:

    .container.main {
    width: 980px;
    padding: 20px;
    overflow: visible;
    }

    .purchase_options {
    position: relative;
    }

    .buy_button {
    position: absolute;
    background: url(http://topgreekgyms.fitnessforum.gr/wp-content/uploads/2012/12/Button12.png) no-repeat center;
    color: white;
    height: 100px;
    width: 375px;
    left: -54px;
    top: -16px;
    }

    .button {
    background-color: transparent;
    color: #ffffff;
    }

    .button:hover {
    background-color: transparent;
    color: #cccccc;
    }

    .buy_button a {
    font-weight: bold;
    font-size: 29px;
    font-family: arial;
    padding: 12px;
    display: block;
    white-space: nowrap;
    position: relative;
    margin: 15px 0 0 50px;
    }   

    .buy_button a span {
    position: absolute;
    right: 33px;
    padding: 0 5px;
    }

这是页面的link。我的问题是左边的顶部红色按钮。

我非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

以防万一将来帮助某人:

我必须在我的代码中添加这部分CSS:

#deal_single.clearfix:after {
    clear: both !important;
}

更具体的说法是“#deal_single”是页面ID。