在前端的界面布局中有一种这样的状况,就是个人块元素的宽和高我不知道具体的大小是多少,只知道宽和高占当前屏幕的多少百分比。html
如今这种状况下有两个div元素,一个大,一个小,如今我须要让小的块元素位于大的块元素的中心位置前端
以下图:布局
下面是实现代码:spa
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> .one { background-color: #FF0000; width: 100%; height: 100%; position: absolute; } /*定位上下左右都为0,这样四周受力平衡,再给定一个margin,属性值是auto自适应,这样就能够居中了*/ .two { background-color: #2AC845; width: 20rem; height: 20rem; position: absolute; top: 0; right: 0; left: 0; bottom: 0; margin: auto; } </style> </head> <body> <div class="one"> <div class="two"></div> </div> </body> </html>