zoukankan      html  css  js  c++  java
  • DIV垂直水平居中

    方法一:使用定位的方法

                .parent {
                     300px;
                    height: 200px;
                    border: 1px solid red;
                    position:relative;
                }
                .child {
                     100px;
                    height: 100px;
                    border: 1px solid violet;
                    position:absolute;
                    top: 50%;
                    left:50%;
                    margin-top: -50px;     /*这里是小盒子高的一半*/
                    margin-left: -50px;    /*这里是小盒子宽的一半*/
                }            

    使用定位方法,需要知道子元素的宽高,但是不需要知道父元素的宽高.1

    方法二:利用定位及margin:auto实现 (实现原理是设置margin自动适应,然后设置定位的上下左右都为0,就如四边均衡受力从而实现盒子的居中;)

                .parent {
                     300px;
                    height: 200px;
                    border: 1px solid red;
                    position:relative;
                }
                .child {
                     100px;
                    height: 100px;
                    border: 1px solid violet;
                    position: absolute;
                    margin: auto;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                }
  • 相关阅读:
    第二章 课后习题 6
    第二章 课后习题 5
    第一章 课后习题 10
    第一章 课后习题 7
    JAVA练习1
    作业2
    作业
    c++作业10月13日作业
    c++作业50页例题3.1
    for循环作业4和5
  • 原文地址:https://www.cnblogs.com/ttty/p/10286359.html
Copyright © 2011-2022 走看看