Advertisement

子div及div中的label均实现水平与垂直居中

阅读量:
复制代码
    <html lang="en">
    
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .parent {
            background-color: black;
            width: 200px;
            height: 200px;
            position: relative;
        }
    
        .child {
            width: 100px;
            height: 100px;
            background-color: greenyellow;
            position: absolute;
            left: 25%;
            top: 25%;
    

全部评论 (0)

还没有任何评论哟~