1_test.html 526 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. #div1{
  10. width: 200px;
  11. height: 200px;
  12. background: #ff0000;
  13. border-radius: 5px;
  14. -webkit-border-radius:5px;
  15. -moz-border-radius:5px;
  16. -o-border-radius:5px;
  17. -ms-border-darius:5px;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id="div1"></div>
  23. </body>
  24. </html>