暑假网页学习1(浮动问题)

<span style="font-size:18px;">一个简单的框架含浮动</span>
<<span style="font-size:18px;">!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>第一课</title>
<style type="text/css">
*{
	margin:0;
	padding:0;
}
.header{
	width:100%;
	height:50px;
	background:#ccc;
}
.header h1{
	text-align:center;
	/*竖直居中文字*/
	height:50px;
	line-height:50px;
}
.contain{
	/*容器水平居中*/
	width:80%;
	margin:0 auto;
	height:400px;
	background:red;
}
.first,.second,.third{
	width:30%;
	height:350px;
	background:blue;
	float:left;
	margin:25px 1% 0;
}
.first{
	margin-left:3%;
}
.footer{
	
	width:100%;
	height:50px;
	background:	#ff1;
}
</style>
</head>

<body>
	<header class="header">
    	<h1>头部部分</h1>
    </header>
    <div class="contain">
    	<div class="first">1</div>
        <div class="second">2</div>
        <div class="third">3</div>
    </div>
    <footer class="footer"></footer>
</body>
</html></span>

浮动常见问题:

如果不定义中间的容器contain的高度,那么footer就会自动浮动到header的下面,而我们在coontain中定义的三个浮动就会浮在上层,此时页面会出现分层,分成两层,但是由于之前给三个浮动设置了外边距因此上面会浮到头部部分的下面,之间的距离就是外边距,出现这种分层问题,而且页脚浮上去的原因是contain中三个东西定义成浮动,因此一旦高度没有了,contain高度就为0,那么解决方法可以加上clear:both,或者定义一个<div class="clear"></div>,.clear{ clear:both},这个定义的位置是有区别的,在contain中定义,就可以将contain的背景颜色显示出来,因为它属于contain中,而且它位于的位置是contain的底部,因此contain就会被它撑开,如果在contain外面,就会没有背景。这两种方法都是将页脚恢复到contain下面的。如果它的宽度是用百分比表示,那么他就是自适应,另一种方法就是设置宽度的最小值,它不会小于它,可以大于它。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值