2012-03-24 68 views
-1

我在CSS中爲div設置了寬度,但是,我需要該div內的某個內容超出此寬度,但找不到解決方案。這裏是我的CSS:去Div寬度?

#wrapper { 
    width: 845px; 
    margin: 0 auto; 
} 

#wrapper #content { 
    width: 630px; 
    float: left; 

} 

#wrapper #content .post { 

    background-image: url('images/black_linen_v2.png'); 
    padding: 10px; 
    color: white; text-shadow: black 0.1em 0.1em 0.2em; 
    position: relative; 
    -webkit-border-radius: 10px; 
    -moz-border-radius: 10px; 



} 

#wrapper #primary { 
    color: white; 
       } 

#wrapper #primary .widget-container { 
    color: white; text-shadow: black 0.1em 0.1em 0.2em; 
    padding: 10px; 

    background-image:url('images/black_linen_v2.png'); 
    position: relative; 
    -webkit-border-radius: 10px; 
    -moz-border-radius: 10px; 

} 

這裏就是我需要超越這一領域:

/* This is the ribbon effect */ 
.ribbon { 
    background: #36ff36; 
    background: -moz-linear-gradient(top, #36ff36, #21b521); 
    background: -webkit-gradient(linear, left top, left bottom, from(#36ff36), to(#21b521)); 
    padding: 10px 10px; 
    margin-left: 50px; 
    margin-top: 0; 
    position: relative; 
    width: 100%; 

    -moz-box-shadow: 1px 1px 3px #292929; 
    -webkit-box-shadow: 1px 1px 3px #292929; 

     /*round the top corners */ 
    -webkit-border-top-left-radius: 10px ; 
    -webkit-border-top-right-radius: 10px; 
    -moz-border-top-left-radius: 10px ; 
    -moz-border-top-right-radius: 10px ; 
    border-top-right-radius: 10px ; 
    border-top-left-radius: 10px ; 


    color: #454545; 
    text-shadow: 1px 1px 0 #36ff36; 
    text-align:center; 
} 

.arrowl { 
    width: 0; height: 0; 
    line-height: 0; 
    border-left: 20px solid transparent; 
    border-top: 10px solid #21b521; 
    top: 104%; 
    left: 0; 
    position: absolute; 
} 
.arrowr { 

    width: 0; height: 0; 
    line-height: 0; 
    border-right: 20px solid transparent; 
    border-top: 10px solid #21b521; 
    top: 104%; 
    right: 0; 
    position: absolute; 
} 

#footer {position: relative; 
    background-image:url('../images/footer.png'); 
    margin-top: -150px; /* negative value of footer height */ 
    height: 150px; 
    clear:both;} 
/* End of ribbon effect*/ 

設置的寬度衝突與「.ribbon」,這是我需要超越該組的寬度。

幫助表示讚賞!

+0

發佈你的HTML會非常有幫助。現在,幾乎不可能提供幫助,因爲我們不知道您的標記。謝謝! – Nathan 2012-03-24 01:03:40

回答

0

#wrapper上設置overflow:visible,對於.ribbon或填充使用較大(110%)的寬度。

1

請張貼您的HTML它它將是一個猜謎遊戲。然而,如果你想創建一些位於其容器外的項目,則需要在容器上設置溢出屬性。

0

您可以將對象設置爲固定位置。然後定義位置和尺寸。確保你的父容器有財產overflow:visible。你的子元素看起來像這樣

position: fixed; 
width:*; 
height:*;