最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

关于html中position的几种属性值的详解

来源:动视网 责编:小采 时间:2020-11-27 15:28:57
文档

关于html中position的几种属性值的详解

关于html中position的几种属性值的详解:position的几种属性值:static, relative, absolute, fixed, inherit<html ><head><meta http-equiv="content-type" content="text/html" charset="gb231
推荐度:
导读关于html中position的几种属性值的详解:position的几种属性值:static, relative, absolute, fixed, inherit<html ><head><meta http-equiv="content-type" content="text/html" charset="gb231


position的几种属性值:static, relative, absolute, fixed, inherit

<html ><head><meta http-equiv="content-type" content="text/html" charset="gb2312"><style> *{margin:0;padding:0} </style> </head> <body> 
 <p style="position:absolute;height:400px;width:400px;background:yellow;left:80px;top:80px;">
 <p style="position:absolute;height:200px;width:200px;background:red;left:100px;top:80px;"></p>
 <p style="position:relative;height:200px;width:200px;background:blue;left:186px;top:186px;"></p>
 <p style="position:fixed;height:140px;width:140px;background:black;left:20px;top:20px;"></p>
 </p>
 <p style="position:static;height:140px;width:140px;background:brown;left:220px;top:220px;"></p></body> </html>

效果截图

紫色(brown)的是static的,所以它的left和top没有起作用,一直跑到最上面去了
黑色(black)的是fixed的,所以它直接以浏览器窗口开始计算left和top的值
红色(red)和蓝色(blue)分别是absolute和relative他们都是从父对象开始计算left和top的值,只是因为有一个是absolute所以产生了重叠效果,没有被另外一个挤走。
inherit是继承的意思,也就是使用和上一级父元素同样的width。其他的规则也是如此,inherit就表示继承父元素的值。
同时我也明白了另外一个道理,因为默认的类型都是static,所以当我们的页面长度等定位的不合理时一个会把一个挤走。

文档

关于html中position的几种属性值的详解

关于html中position的几种属性值的详解:position的几种属性值:static, relative, absolute, fixed, inherit<html ><head><meta http-equiv="content-type" content="text/html" charset="gb231
推荐度:
标签: 讲解 html html中
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top