2010-05-14 92 views
0

我想要做的就是滑動第一個div的內容,以便顯示的唯一內容是不被外部div隱藏的內容。如何將靈活的寬度div放入固定寬度的容器中?

我想這一點,但不工作

#contenedorProductos { 
margin-left: 50px; 
float: center; 
position: absolute; 
width: 490px; 
text-align: center; 
z-index:1; 
} 

#contenedorProductos #contenidoProductos { 
overflow: auto; 
position: absolute; 
width: auto; 
} 

我的英語水平,不要讓我更好地解釋,希望這可以理解...謝謝你。

回答

1

需要設置overflow: hidden;在外層div,和從內DIV除去position: absolute;(從外層div和可能 - 餘量和浮子具有使用絕對位置時沒有作用):

#contenedorProductos { 

    margin-left: 50px; 
    float: center; 
    width: 490px; 
    text-align: center; 
    z-index:1; 
    overflow: hidden; 

} 

#contenedorProductos #contenidoProductos { 

    width: auto; 

}