10
0

1_css3位移.html 986 B

1234567891011121314151617181920212223242526272829303132333435363738
  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:1px dashed black;
  12. margin:100px auto;
  13. position: relative;
  14. }
  15. .div1{
  16. width: 200px;
  17. height: 200px;
  18. background-color: red;
  19. /* transform: translateX(-100px) translateY(100px); */
  20. /* transform: translate(100px,100px); */
  21. /* 百分比相较于自己 */
  22. /* transform: translate(50%,50%); */
  23. position: absolute;
  24. top:50%;
  25. left: 50%;
  26. /* margin-top: -100px;
  27. margin-left: -100px; */
  28. transform: translate(-50%,-50%);
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="box">
  34. <div class="div1"></div>
  35. </div>
  36. </body>
  37. </html>