博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css中的相对定位和绝对定位
阅读量:5012 次
发布时间:2019-06-12

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

css中的定位和绝对定位尤其是对一个刚刚接触web的解是有些不好搞清楚,以我的理解是

相对定位是离该元素最近的元素为参考点来定位的。

绝对定位是脱离文档流,以浏览器的左上角
也就是坐标(0,0)为参考点来定位的。

本人是也在csdn上看到的一段code,觉得这样比较好理解所以COPY出来,具体的连接我忘记了。

 

效果截图

 

 

ExpandedBlockStart.gif
代码
<!
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
>
<
FCK:meta 
http-equiv
="Content-Type"
 content
="text/html; charset=utf-8"
  
/>
<
title
>
positon方法说明
</
title
>
<
style 
type
="text/css"
>
.relative
{
        width
:
300px
;
        height
:
100px
;
        background
:
yellow
;
        position
:
relative
;
        margin
:
55px auto
;
}
.box
{
        width
:
200px
;
        height
:
95px
;
        background
:
blue
;
        position
:
absolute
;
        top
:
0
;
        left
:
0
;
        color
:
#fff
;
        font-size
:
12px
;
}
.box2
{
width
:
200px
;
height
:
50px
;
background
:
orange
;
position
:
absolute
;
top
:
0
;
left
:
0
;
}
</
style
>
</
head
>
<
body
>
     
<
div 
class
="relative"
>
                
<
div 
class
="box"
>
                        .relative是"我"的依靠.如果.relative块没有设置position:relative;"我"会一直往上寻找有position:relative;的依靠.如果一直没有目标."我"会以浏览器的左上方依靠.
                
</
div
>
                
     
</
div
>
<
div 
class
="box2"
>
"我"一直没有找到依靠.所以"我"会停靠在浏览器的左上方.
</
div
>
<
div
>
<
p
>
.relative的块是父级
</
p
>
<
p
>
.box是子级.
</
p
>
<
p
>
当给.relative设置position:relative;的时候,.box块就会以.relative块的左上方为基准,
<
span 
style
="color:red"
>
(在给了.box块的position:absolute;top:0;left:0;的前提下哦)
</
span
></
p
>
</
div
>
<
style
="color:orange;font-weight:bold"
>
特别注意.当一个内联元素:比如"span标签",给了position定位后.会在不转display:block;的情况下拥有块的属性.
</
p
>
</
body
>
</
html
>

 

转载于:https://www.cnblogs.com/jack-man/archive/2011/01/18/1938290.html

你可能感兴趣的文章
中文url编码乱码问题归纳整理一
查看>>
Cesium应用篇:3控件(3)SelectionIndicator& InfoBox
查看>>
58. Length of Last Word(js)
查看>>
前端面试题汇总(持续更新...)
查看>>
如何成为F1车手?
查看>>
QT自定义消息
查看>>
Save (Not Permitted) Dialog Box
查看>>
装饰模式(Decorator)
查看>>
任务13:在Core Mvc中使用Options
查看>>
利用Excel 2010数据透视图实现数字的可视化的图形直观展示
查看>>
Sort Colors
查看>>
iview树的修改某个节点,树刷新后自动展开你刚才展开的所有节点
查看>>
oracle服务起不来以及无法监听问题解决
查看>>
Mvc--Html.ActionLink()的用法
查看>>
delphi 基础书籍推荐
查看>>
《面向对象程序设计》2018年春学期寒假及博客作业总结
查看>>
iOS开发UI之KVC(取值/赋值) - KVO (观察某个对象的某个属性的改变)
查看>>
1.7 将一个MxN矩阵所有为0的元素所在行和列全部置0
查看>>
删除U盘时提示无法停止‘通用卷’设备的解决方法!!不要每次都硬拔了,对电脑有不小的损害!!!...
查看>>
Java中接口与接口和类之间的关系
查看>>