absolute和relative的几个Demo
这些例子最好通过FireFox结合FireBug调试查看
1、absolute让元素inline-block化
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>absolute让元素inline-block化</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<style type="text/css">
body
{
font-family: 'Microsoft YaHei';
font-size: 18px;
} .div
{
padding: 10px;
margin-left: 20px;
margin-bottom: 10px;
background-color: #f0f3f9;
border: 8px solid #ffd800;
} .abs
{
position: absolute;
} .info
{
bottom: 10px;
right: 10px;
border-width: 8px 0 0;
border-radius: 8px 8px 0 0;
border-color: blue;
} .info span
{
width: 200px; /*width无效,必须设置为block才有效!有3种方式>>>>1、display:block;2、float:left;3、position:absolute;*/
border: 1px solid #4cff00;
display: block;
/*float:left;*/
/*position: absolute;
left: 0;
top: 0;*/
}
</style> </head>
<body>
<div class="div">
<img src="http://image.zhangxinxu.com/image/study/s/s256/mm1.jpg" />
<p>无absolute</p>
</div>
<div class="div abs">
<img src="http://image.zhangxinxu.com/image/study/s/s256/mm1.jpg" />
<p>absolute后</p>
</div>
<div class="div abs info">
<p>
说明:包裹性换种说法就是让元素inline-block化,<br />
例如一个div标签默认宽度是100%显示的,但是一旦被absolute属性缠上,<br />
则100%默认宽度就会变成自适应内部元素的宽度。
</p>
<h1>absolute 特性总结</h1>
<p>
1、脱离文档流<br />
2、宽和高均为0(FireBug查看布局可知)<br />
3、如果没有[left/right/top/bottom] 则待在原位(表现为一个没有长宽的参考点)<br />
4、如果指定[left/right/top/bottom] 则向上追溯到 relative或absolute父盒子,直至body后定位<br />
5、包裹其内部子元素,即让元素inline-block化<br />
</p>
<span>这是span标签,inline是没有宽度的,block后才有宽度</span>
</div> </body>
</html>
2、absolute绝对定位的破坏性
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>absolute绝对定位的破坏性</title>
<style>
body
{
font-family: 'Microsoft YaHei';
font-size: 18px;
} .div
{
padding: 10px;
margin: 5px;
border: 8px solid #ffd800;
background-color: #f0f3f9;
float: left;
} .abs
{
position: absolute;
/*没有翅膀是飞不走的,待在原位*/
/*
1、取消注释,插上翅膀,则会以body为参考物作left:0 top:0 位移
2、FireBug禁用翅膀,取消位移,回到原位!
*/
/*left: 0px;
top: 0px;*/
} .info
{
border-width: 8px 0 0;
border-radius: 8px 8px 0 0;
border-color: blue;
top: auto; /*复写abs以清空*/
left: 10px; /*复写abs以重置*/
bottom: 10px;
}
</style>
</head>
<body>
<div class="div">
<img src="http://image.zhangxinxu.com/image/study/s/s256/mm1.jpg" />
<p>图片无absolute</p>
</div>
<div class="div">
<img class="abs" src="http://image.zhangxinxu.com/image/study/s/s256/mm1.jpg" />
<p>
图片absolute后,absolute的参考物,为啥没有追溯到body,而是在本div中?<br />
因为没有指定left/top!没有翅膀是飞不走的!<br />
事实上参考物的确为body,只不过没有飞走!<br />
依然保持原位,貌似还在div中。
</p>
</div>
<div class="div abs info">
<p>说明:图片设置position:absolute属性后,父标签的高宽都塌陷了,连它的兄弟float都救不了。</p> </div>
</body>
</html>
3、父盒子限魔大法
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>父盒子限魔大法</title>
<style>
body
{
font-family: 'Microsoft YaHei';
font-size: 18px;
} .box
{
width: 15em;
height: 10em;
background-color: #beceeb;
position: relative; /*父盒子限魔大法,父盒子真身还在文档流,纵云梯z-index飙升*/
/*position: absolute;*/ /*父盒子限魔大法,父盒子真身不在文档流,没有了宽和高,纵云梯z-index飙升*/
left: 100px;
top: 100px;
} .box img
{
position: absolute; /*向上追溯absolute或relative,直至body*/
left: 20px;
top: 20px;
}
</style>
</head>
<body>
<div>
<p>说明:限制absolute以body为参考物,约束在拥有ablolute或relative属性的父容器</p>
</div>
<div id="target" class="box">
<img src="http://image.zhangxinxu.com/image/study/s/s128/mm3.jpg" />
</div> </body>
</html>
4、relative最小影响原则(不遵循)
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>relative最小影响原则(不遵循)</title>
<style>
body
{
font-family: 'Microsoft YaHei';
font-size: 18px;
} .test
{
width: 25em;
margin: 2em auto;
} .box
{
padding: 2em;
border: 1px solid #beceeb;
border-radius: 2px;
background-color: #f0f3f9;
position: relative;
} .ok
{
color: green;
font-size: 6em;
position: absolute;
right: -11px;
bottom: -.5em;
} .infodiv
{
background-color: #f0f3f9;
margin: 5px auto;
width: 800px;
} .infoborder
{
/*position: absolute;*/ /*inline-block化,但是没有自然居中,即需要其他辅助居中*/
border-style: solid;
border-width: 8px 0 0;
border-radius: 8px 8px 0 0;
border-color: blue;
}
</style>
</head>
<body>
<div class="test">
<div class="box">
CSS relative相对定位的最小化影响原则
<strong class="ok">√</strong>
</div>
</div> <div class="infodiv infoborder">
<p>
将需要绝对定位的元素单独放在relative属性的标签下,于是,<br />
relative相对定位就不会影响任何其他元素,仅仅是其内部的绝对定位元素。<br />
于是,上面的文字内容div还是那个普普通通的文字内容div,<br />
以后要改动什么东西就可以放心大胆的改,而不需要担心扔掉那个属性或是布局变了,<br />
里面原来绝对定位的元素位置偏移掉了。<br />
也就是牺牲一个标签增强扩展性和易维护性!
</p>
</div> </body>
</html>
5、relative最小影响原则(遵循)
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>relative最小影响原则(遵循)</title>
<style>
body
{
font-family: 'Microsoft YaHei';
font-size: 18px;
} .test
{
width: 25em;
margin: 2em auto;
} .box
{
padding: 2em;
border: 1px solid #beceeb;
border-radius: 2px;
background-color: #f0f3f9;
} .rel
{
position: relative;
} .ok
{
color: green;
font-size: 6em;
position: absolute;
right: -10px;
top: -1em;
} .infodiv
{
background-color: #f0f3f9;
margin: 5px auto;
/*width: 800px;*/
} .infoborder
{
position: absolute; /*inline-block化,但是脱离文档流后无法自然居中,居中的技巧就是transform*/
left: 50%;
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
border-style: solid;
border-width: 8px 0 0;
border-radius: 8px 8px 0 0;
border-color: blue;
}
</style>
</head>
<body>
<div class="test">
<div class="box">CSS relative相对定位的最小化影响原则</div>
<div class="rel"><strong class="ok">√</strong></div>
</div>
<div class="infodiv infoborder">
<p>
将需要绝对定位的元素单独放在relative属性的标签下,于是,<br />
relative相对定位就不会影响任何其他元素,仅仅是其内部的绝对定位元素。<br />
于是,上面的文字内容div还是那个普普通通的文字内容div,<br />
以后要改动什么东西就可以放心大胆的改,而不需要担心扔掉那个属性或是布局变了,<br />
里面原来绝对定位的元素位置偏移掉了。<br />
也就是牺牲一个标签增强扩展性和易维护性!
</p>
</div>
</body>
</html>
absolute和relative的几个Demo的更多相关文章
- Position属性四个值:static、fixed、absolute和relative的区别和用法
Position属性四个值:static.fixed.absolute和relative的区别和用法 在用CSS+DIV进行布局的时候,一直对position的四个属性值relative,absolu ...
- position属性absolute与relative 详解
最近一直在研究javascript脚本,熟悉DOM中CSS样式的各种定位属性,以前对这个属性不太了解,从网上找到两篇文章感觉讲得很透彻,收藏下来,唯恐忘记.一.解读absolute与relative ...
- css absolute与relative的区别
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- Div CSS absolute与relative的区别小结
absolute:绝对定位,CSS 写法“ position: absolute; ”,它的定位分两种情况,如下: 1. 没有设定 Top.Right.Bottom.Left 的情况,默认依据父级的“ ...
- position属性absolute和relative理解
relative:相对于自身静态位置进行定位,不脱离流. absolute:绝对定位,脱离流,如果父元素定义了position属性,无论是absolute.relative还是fixed,都是相对于父 ...
- CSS+DIV布局中absolute和relative区别
原文:http://developer.51cto.com/art/201009/225201.htm 这里向大家简单介绍一下CSS+DIV布局中absolute和relative属性的用法和区别,定 ...
- position的absolute与fixed,absolute与relative共同点与不同点
absolute与fixed 共同点: (1) 改变行内元素的呈现方式,display被置为block: (2) 让元素脱离普通流,不占据空间: (3) 默认会覆盖到非定位元素上 不同点: absol ...
- focus、click、blur、display、float、border、absolute、relative、fixed
onfocus:获取焦点,点击时,按着不放 onclick:点击松开之后,未点击其他处 onblur:点击松开之后,又点击其他处 display:block,none,inline block:单独占 ...
- 怕忘记了CSS中position的absolute和relative用法
CSS2.0中的定位确实有时会把人弄糊涂,所以今天给它记下来,同时供以后查阅.下面写的内容有一部分借鉴了w3cschool和divcss5这两个官方网站,在此处特别的说明一下 CSS2.0中posit ...
随机推荐
- oracle 12 C启动问题
启动时出现以下报错信息: SQL> startup; ORA-48146: missing read, write, or exec permission on directory during ...
- ubuntu 恢复gnome-panel
Ubuntu重启panel 的方法首先进入终端, 依次输入以下命令1.gconftool --recursive-unset /apps/panel2.rm -rf ~/.gconf/apps/pan ...
- Android基础之Activity
一.什么是Activity Activity是Android四大组件之一,并且Activity是组件中的重中之重. Activity是为用户提供一个用于信息交互的窗口. 二.如何去创建Activity ...
- [翻译][MVC 5 + EF 6] 10:处理并发
原文:Handling Concurrency with the Entity Framework 6 in an ASP.NET MVC 5 Application 1.并发冲突: 当一个用户编辑一 ...
- php QQ登录
基本原理: 就是获取唯一的openid,此值只要与自己数据库表中的值对应,就说明是此用户, 没有,则说明是新用户,其实就是找对应关系,因为openid与QQ号是唯一对应关系 放置按钮: 如在首页 in ...
- Python入门一:基本数据类型
作为一个刚入门编程的大一狗,第一次写博客,希望能对自己学的知识进行巩固和提升,也希望记录自己成长的过程. 学习Python,一是因为暑假学的c++头疼,听说Python简单,那我就试试吧,二是因为Py ...
- bootstrap .col-md-6 文字居中问题处理
- 一步步学习ASP.NET MVC3 (13)——HTML辅助方法
请注明转载地址:http://www.cnblogs.com/arhat 今天老魏是在十分郁闷,我的一个U盘丢了,心疼里面的资料啊,全部是老魏辛辛苦苦积攒的Linux资料,太心疼,到现在心情还不是很爽 ...
- 增加字体和颜色样式-------CSS
通过使用CSS,控制文本的字体,风格和颜色 1.基本操作: body{ font-family: Verdana, Geneva, Tahoma, sans-serif } body{ font-si ...
- 简单方法打包.net程序集脱离framework
最近业余捣鼓monogame,自然而然就关注到了.net程序脱离framework发布的问题上了, 度娘,谷歌娘 都经过一番查找,无非分为如下几类方法: 1.直接使用mono运行时,附带 bin.li ...