InfoBoxItem.html 585 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <div class="box2 box"></div>
  5. </body>
  6. <style>
  7. .box {
  8. position: relative;
  9. left: 50px;
  10. top: 50px;
  11. }
  12. .box1 {
  13. width: 554px;
  14. height: 80px;
  15. background: #2E3F74;
  16. border-radius: 11px;
  17. border: 2px solid #00D8FF;
  18. }
  19. .box2 {
  20. width: 554px;
  21. height: 80px;
  22. background: #00D8FF;
  23. border-radius: 11px;
  24. border: 2px solid #ff00c3;
  25. }
  26. </style>
  27. </html>