将移动端页面 分成上下两个背景颜色

<style type="text/css">
	*{
		margin:0;
		padding:0
	}
	body,html{
		width:100%;
		height:100%;
		overflow: hidden;
		background-color:#00f;
	}
	.content{
		width:100%;
		height:100%;
	}
	.top{
		height:750px;
	}
	.bottom{
		height:44%;
		background-color:#f00;
	}
</style>
<div class="content">
	<div class="top"></div>
	<div class="bottom"></div>
</div>

  

posted @ 2018-05-29 15:42  董七  阅读(390)  评论(0编辑  收藏  举报