- 1 <head>
- 2 <style>
- 3 #parent {
- 4 width: 300px;
- 5 height: 300px;
- 6 background-color: red;
- 7 position: relative;
- 8 }
- 9 .child {
- 10 width: 100px;
- 11 height: 100px;
- 12 background-color: green;
- 13 position: absolute;
- 14 left: 50%;
- 15 top:50%;
- 16 transform: translate(-50%,-50%);
- 17 }
- 18 </style>
- 19 </head>
- 20 <body>
- 21 <div id="parent">
- 22 <div class="child">子元素</div>
- 23 </div>
- 24 </body>
- 25 </html>