我正在使用模板工作于WP,并且试图将按钮浮动到主容器之外。我在这里经历了一些已经发布的问题,但是没有运气。

我已经尝试过使用padding,margin,overflow等。似乎起作用的一件事是通过设置负的margin,但是在这种情况下,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。我的问题是左侧的顶部红色按钮。

我将不胜感激任何帮助!

最佳答案

以防万一将来对某人有帮助:

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

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


更具体地说,“#deal_single”是页面ID。

09-20 20:43