2_CSS3位移.html 855 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 400px;
  10. height: 400px;
  11. border:2px solid black;
  12. position: relative;
  13. }
  14. .box1{
  15. position: absolute;
  16. top: 50%;
  17. left: 50%;
  18. /* margin-top: -50px;
  19. margin-left: -50px; */
  20. width: 100px;
  21. height: 100px;
  22. background-color: red;
  23. transform: translate(-50%,-50%);
  24. /* transform: translateY(100px) translateX(100px); */
  25. /* transform: translate(50%,50%); */
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="box">
  31. <div class="box1"></div>
  32. </div>
  33. </body>
  34. </html>