0
我想div div高度設置爲auto。Css包裝和容器分區自動高度?
在裏面的div的底部是走出來。我想要底部div擴展到。
請幫忙!
body,html{height:100%}
.wrapper{
\t width: 700px;
height: 100%;
\t margin: 25px auto;
overflow:hidden;
position: relative;
}
.inner-container{
\t width: 100%;
\t height: 100%;
\t float: left;
\t border-radius: 5px;
\t background: rgba(255,255,255,.5);
\t position: relative;
}
.button-container{
\t float: left;
\t width: 100%;
\t height: 35px;
\t position: absolute;
\t z-index: 2;
}
#prev, #next{
\t border: 0;
\t background: #5CB85C;
\t padding: 5px 10px;
\t color: #fff;
\t border-radius: 2px;
\t cursor: pointer;
\t font-size: 18px;
}
#next{
\t float: right;
}
#prev{
\t float: left;
}
#verilistesi{
\t float: left;
\t width: 700px;
height: 100%;
\t position: relative;
\t overflow: hidden;
}
#verilistesi .item-container{
\t width: 100%;
\t float: left;
}
#verilistesi .item-container .item{
\t width: 500px;
height: 100%;
\t background: rgba(0,0,0,.3);
\t margin-bottom: 35px;
\t margin-top: 50px;
\t position: relative;
\t overflow: hidden;
}
我的CSS。
我如何設置自動高度兩個div?請給予幫助?
你的問題沒有明確的版本1.00 ......但試圖從包裝類刪除100%的高度。 – JodyT