0

我正在使用模板处理 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;
    }

这是该页面的链接。我的问题是左侧顶部的红色按钮。

我将不胜感激任何帮助!

4

1 回答 1

0

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

我不得不在我的代码中添加这部分 CSS:

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

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

于 2013-01-05T06:18:39.040 回答