Css Wrapper和Container Div自动高度?

时间:2015-09-07 13:26:55

标签: html css

我想在div高度设置自动div。

http://bit.ly/rubikss1

div内部的

出来了。我希望底部div延伸到。

请帮助!

body,html{height:100%}

.wrapper{
	width: 700px;
        height: 100%;
	margin: 25px auto;
        overflow:hidden;
        position: relative;
}

.inner-container{
	width: 100%;
	height: 100%;
	float: left;
	border-radius: 5px;
	background: rgba(255,255,255,.5);
	position: relative;
}

.button-container{
	float: left;
	width: 100%;
	height: 35px;
	position: absolute;
	z-index: 2;
}

#prev, #next{
	border: 0;
	background: #5CB85C;
	padding: 5px 10px;
	color: #fff;
	border-radius: 2px;
	cursor: pointer;
	font-size: 18px;
}

#next{
	float: right;
}

#prev{
	float: left;
}

#verilistesi{
	float: left;
	width: 700px;
        height: 100%;
	position: relative;
	overflow: hidden;
}

#verilistesi .item-container{
	width: 100%;
	float: left;
}

#verilistesi .item-container .item{
	width: 500px;
        height: 100%;
	background: rgba(0,0,0,.3);
	margin-bottom: 35px;
	margin-top: 50px;
	position: relative;
	overflow: hidden;
}

我的css。

我如何设置自动高度两个div?请帮忙?

1 个答案:

答案 0 :(得分:0)

我认为这就是你想要的:

        body,html{height:100%}

        .wrapper{
            width: 700px;
            height: auto;
            margin: 25px auto;
            overflow:hidden;
            position: relative;
        }

        .inner-container{
            width: 100%;
            height: auto;
            float: left;
            border-radius: 5px;
            background: rgba(255,255,255,.5);
            position: relative;
        }

        .button-container{
            float: left;
            width: 100%;
            height: 35px;
            position: absolute;
            z-index: 2;
        }

        #prev, #next{
            border: 0;
            background: #5CB85C;
            padding: 5px 10px;
            color: #fff;
            border-radius: 2px;
            cursor: pointer;
            font-size: 18px;
        }

        #next{
            float: right;
        }

        #prev{
            float: left;
        }

        #verilistesi{
            float: left;
            width: 700px;
            height: auto;
            position: relative;
            overflow: hidden;
        }

        #verilistesi .item-container{
            width: 100%;
            float: left;
        }

        #verilistesi .item-container .item{
            width: 500px;
            height: 100%;
            background: rgba(0,0,0,.3);
            margin-bottom: 35px;
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }
相关问题