2、网页设计中绝对定位的实现


placeholder image
admin 发布于:2013-11-12 15:24:00
阅读:loading

主要想说的绝对定位有两种,一种是使元素距离body(或者说是窗口)显示的绝对位置,另外一种是元素距离父元素显示的绝对位置。分别说一下两种的实现:
        一显示距离窗口的绝对位置,只需要设置该元素的几个样式属性,代码如下:

.positionBodyRight{

    position: absolute;

    top:100px;

    right:100px;

}

 

        二显示距离父对象的绝对位置,需要两步,第一先设置父对象的绝对定位方式为静态定位,第二再设置子元素的绝对定位即可,代码如下:

/**

*/

.positionBodyRight{

    position: absolute;

    top:100px;

    right:100px;

}

/**

*/

.positionParent{

    position: relative;

}

 
练习代码为:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title></title>

<style type="text/css">

    

    body,div{

        margin:0;

        padding:0;

    }

    

    .parent{

        width:100px;

        height:300px;

        border:1px solid red;

    }

    .one{

        background:gray;

        width: 100px;

        height:100px;

    }

    

    .two{

        width:100px;

        height:100px;

        background:yellow;

    }

    

    .three{

        width:100px;

        height:100px;

        background:pink;

    }

    

    h1,h3{

        color: red;

        margin: 20px;

    }

    

    /**

    * 

    */

    .positionBodyRight{

        position: absolute;

        top:100px;

        right:100px;

    }

    

    /**

    * 

    */

    .positionParent{

        position: relative;

    }

</style>

</head>

<body>

<div>

    <h3>1</h3>

    <div class="parent">

        <div class="one">One</div>

        <div class="two">Two</div>

        <div class="three">Three</div>

    </div>

</div>

<div>

    <h3>22top100right100</h3>

    <div class="parent">

        <div class="one">One</div>

        <div class="two positionBodyRight">Two</div>

        <div class="three">Three</div>

    </div>

</div>

<div>

    <h1>*position: relative;</h1><h3>32top100right100</h3>

    <div class="positionParent">

        <div class="one">One</div>

        <div class="two positionBodyRight">Two</div>

        <div class="three">Three</div>

    </div>

</div>

    

</body>

</html>


 运行效果图:

image.png




上述许多内容已经过时和过期了,留存本篇文章仅为方便个人查看,原始文章的信息参考:

原始链接:https://www.chendd.cn/information/viewInformation/other/102.a

最后更新:2013-11-12 15:24:00

访问次数:191

评论次数:0

点赞个数:0

 点赞


 发表评论

当前回复:作者

 评论列表


留言区