博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
position
阅读量:5135 次
发布时间:2019-06-13

本文共 1481 字,大约阅读时间需要 4 分钟。

html的三种布局方式:

  • 标准流(默认,顺序布局)
  • 浮动
  • 定位

两大元素

  • 块级元素(div,table,h1~h6,ul,li,p...)  独占一行
  • 内联元素(a,span,img,input) 和相邻内联元素在同一行,一行宽度不够会重起一行

position:relative:对宽高无影响

  left:10px top:10px 向右移动10px,向下移动10px

  right:10px bottom:10px 向左移动10px,向上移动10px

position:absolute(脱离正常的文档流):此时元素b高度为0,没有设置left,top,right,bottom(

若此时有一个非absolute的元素a,则按照标准流先排列a,再排列b

若此时给元素b设置了left,top等属性,也是先排列a,再排列b,b有可能覆盖a


 

.test{            position: absolute;            width:100px;            height: 100px;            background: red;        }        .parent{            width:200px;            height: 200px;            background: blue;            margin-top:200px;            margin-left:200px;        }

.test{            position: absolute;            width:100px;            height: 100px;            background: red;            left:0;            top:0;        }        .parent{            width:200px;            height: 200px;            background: blue;            margin-top:200px;            margin-left:200px;        }

.test{            position: absolute;            width:100px;            height: 100px;            background: red;            left:0;            top:0;        }        .parent{            width:200px;            height: 200px;            background: blue;            margin-top:200px;            margin-left:200px;            position: relative;        }

 

 

 

position:fixed

  不受制于父元素,即使父元素有定位。固定在屏幕的某个地方,不会随任何元素而移动 

 

 

转载于:https://www.cnblogs.com/yintingting/p/8747826.html

你可能感兴趣的文章
Weka中数据挖掘与机器学习系列之基本概念(三)
查看>>
Win磁盘MBR转换为GUID
查看>>
Java SE和Java EE应用的性能调优
查看>>
leetcode-Sort List
查看>>
中文词频统计
查看>>
了解node.js
查看>>
想做移动开发,先看看别人怎么做
查看>>
Eclipse相关集锦
查看>>
继承条款effecitve c++ 条款41-45
查看>>
Java泛型的基本使用
查看>>
1076 Wifi密码 (15 分)
查看>>
noip模拟赛 党
查看>>
bzoj2038 [2009国家集训队]小Z的袜子(hose)
查看>>
Java反射机制及其Class类浅析
查看>>
Postman-----如何导入和导出
查看>>
移动设备显示尺寸大全 CSS3媒体查询
查看>>
图片等比例缩放及图片上下剧中
查看>>
background-clip,background-origin
查看>>
【Linux】ping命令详解
查看>>
对团队成员公开感谢博客
查看>>