首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
其他好文
> 详细
定位的详解
时间:
2016-07-21 17:45:33
阅读:
154
评论:
0
收藏:
0
[点我收藏+]
标签:
一.定位的分类:
1.相对定位 position:relative;
2.绝对定位 position:absolute;
3.固定定位 position:fixed;
相对定位:
1.参考点:自己
2.不脱离标准文档流,老家留坑,形影分离
3.用途:微调元素,做绝对定位的参考(子绝父相)
注意:要学会计算盒子的实际高度和宽度
绝对定位:
绝对定位脱标
参考点
1.用top描述,参考点是页面的左上角,而不是浏览器的左上角;
2.
用bottom描述,参考点是浏览器首屏窗口的尺寸,对应的页面的左下角;3.以盒子为参考点:一个绝对定位的元素,如果父亲元素中也出现了定位的 元素(
可以是任何定位),那么将以父辈祖先这个元素作为参考点
。(
如果是有定位的祖先元素有边框border,那么将以border内侧以参考点,另外绝对定位的儿子,无视参考的那个盒子的padding)
参考点:top
参考点:bottom
参考点:盒子
固定定位:
1.参考点:相对浏览器的窗口定位。页面如何滚动,这个盒子的位置显示 都不变。
2.脱离标准文档流
3.IE6不兼容
现在的位置
滚动后的位置
附上本人用定位做的布局图
附上HTML代码:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<style type="text/css">
body{
margin: 0;
padding: 0;
}
.father{
width: 970px;
height: 593px;
margin: 200px auto;
}
nav{
width: 970px;
height: 113px;
/*border: 1px solid red;*/
position: relative;
}
.box1{
width: 277px;
height: 103px;
background-color: #ff0000;
position: absolute;
top: 0;
left: 0;
}
.box2{
width: 137px;
height: 49px;
background-color: #00ff00;
position: absolute;
top: 0;
right:0;
}
.box3{
width: 679px;
height: 46px;
background-color: #00ff00;
position: absolute;
top: 57px;
right:0
}
section{
width: 970px;
height: 445px;
/*border: 1px solid red;*/
position: relative;
}
.box4{
width: 310px;
height: 435px;
background-color: #ffcc00;
position: absolute;
top: 0;
left: 0;
}
.box5{
width: 450px;
height: 240px;
background-color: #3399ff;
position: absolute;
top: 0;
left: 320px;
}
.box6{
width: 450px;
height: 110px;
background-color: #3399ff;
position: absolute;
top: 250px;
left: 320px;
}
.box7{
width: 450px;
height: 30px;
background-color: #3399ff;
position: absolute;
top: 370px;
left: 320px;
}
.box8{
width: 190px;
height: 400px;
background-color: #cc3399;
position: absolute;
top: 0;
right: 0;
}
.box9{
width: 650px;
height: 25px;
background-color: #339900;
position: absolute;
top: 410px;
right: 0;
}
footer{
width: 970px;
height: 35px;
/*border: 1px solid red;*/
position: relative;
}
.box10{
width: 970px;
height: 35px;
background-color: #000099;
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
<div class="father">
<nav>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</nav>
<section>
<div class="box4"></div>
<div class="box5"></div>
<div class="box6"></div>
<div class="box7"></div>
<div class="box8"></div>
<div class="box9"></div>
</section>
<footer>
<div class="box10"></div>
</footer>
</div>
</body>
</html>
希望大家给出意见和建议。。。。。。。。。。。。。。。。。。。。
定位的详解
标签:
原文地址:http://www.cnblogs.com/liupengfei13346950447/p/5692213.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
分布式事务
2021-07-29
OpenStack云平台命令行登录账户
2021-07-29
getLastRowNum()与getLastCellNum()/getPhysicalNumberOfRows()与getPhysicalNumberOfCells()
2021-07-29
【K8s概念】CSI 卷克隆
2021-07-29
vue3.0使用ant-design-vue进行按需加载原来这么简单
2021-07-29
stack栈
2021-07-29
抽奖动画 - 大转盘抽奖
2021-07-29
PPT写作技巧
2021-07-29
003-核心技术-IO模型-NIO-基于NIO群聊示例
2021-07-29
Bootstrap组件2
2021-07-29
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!