auto.html 749 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. #inner {
  8. margin-right: auto;
  9. width: 250px;
  10. height: 125px;
  11. /*background-image: linear-gradient(45deg, #84ECEF 10%, #F8F62F 60%, #FDC018);*/
  12. background-color: #0d8ddb;
  13. }
  14. #outer {
  15. height: 500px;
  16. width: 500px;
  17. background: #1F1D20;
  18. /*background-image: linear-gradient(#757575 1px, transparent 1px), linear-gradient(90deg, #757575 1px, transparent 1px);*/
  19. /*background-size: 25px 25px;*/
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div id="outer">
  25. <div id="inner"></div>
  26. </div>
  27. </body>
  28. </html>