博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
层在页面中的定位
阅读量:4110 次
发布时间:2019-05-25

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

层(div)的定位在Web开发中,有着很重要的位置。主要用到的Css属性有:

     position:absolute;
        width:100px;
        height:100px;
        background:CornflowerBlue;
        left:100%;
        top:50%;
        margin-left:-100px;
        margin-top:-50px;

下面是不同位置的参考实现方式:分为东、南、西、北、中、东南、东北、西南、西北。

positioning
center
east
west
north
south
westNorth
westSouth
eastNorth
eastSouth

 

效果如下:

 

 

转载地址:http://uibsi.baihongyu.com/

你可能感兴趣的文章