好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

htmlcss笔记定位_html/css_WEB-ITnose

1.定位:

   

2.透明度:ie不兼容;标准:不透明度:opacity:0~1;

          ie私有:filter:alpha(opacity=0~100);

    

3.

  登陆框体居中与整个页面:

    position:absolute;top:50%;left:50%;margin-top:-Apx;margin-left:-Bpx;

      A为登陆框体的高;B为登陆框体的宽;还要考虑边框,内边距等,

4.pisition:fixed;

  固定定位;

  特性与绝对定位基本一致,差别是始终相对于整个文档进行定位;

    ie6不支持固定定位;如需兼容需要配合JS定位。

5.position:inherit;

  从父级继承,基本不用。

6.position:static;

  默认继承;

查看更多关于htmlcss笔记定位_html/css_WEB-ITnose的详细内容...

  阅读:35次